Finished text parser
This commit is contained in:
parent
d439ac92fc
commit
832ed15060
11 changed files with 323 additions and 127 deletions
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue