Some improvements to the designer
This commit is contained in:
parent
9e107c849f
commit
df651e7016
8 changed files with 146 additions and 27 deletions
|
@ -5,16 +5,18 @@ package techreborn.manual.saveFormat;
|
|||
*/
|
||||
public class Entry {
|
||||
|
||||
String registryName;
|
||||
public String name;
|
||||
|
||||
MetaData meta;
|
||||
public String registryName;
|
||||
|
||||
public MetaData meta;
|
||||
|
||||
/**
|
||||
* This says what type of page it is, crafting, image, ect
|
||||
*
|
||||
* //TODO use class name?
|
||||
*/
|
||||
String type;
|
||||
public String type;
|
||||
|
||||
EntryData data;
|
||||
public EntryData data;
|
||||
}
|
||||
|
|
|
@ -11,7 +11,14 @@ public class ManualFormat {
|
|||
|
||||
String modId;
|
||||
|
||||
List<Entry> blocks;
|
||||
List<Entry> entries;
|
||||
|
||||
List<Entry> items;
|
||||
public ManualFormat(String name, String modId, List<Entry> entries) {
|
||||
this.name = name;
|
||||
this.modId = modId;
|
||||
this.entries = entries;
|
||||
}
|
||||
|
||||
public ManualFormat() {
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue