Finished text parser

This commit is contained in:
WayofTime 2014-12-02 19:18:37 -05:00
parent d439ac92fc
commit 832ed15060
11 changed files with 323 additions and 127 deletions

View file

@ -0,0 +1,14 @@
package WayofTime.alchemicalWizardry.book.interfaces;
import WayofTime.alchemicalWizardry.book.compact.Entry;
public class StringEntry
{
public String str;
public Entry entry;
public StringEntry(String str, Entry ent)
{
this.str = str;
this.entry = ent;
}
}