Some improvements to the designer

This commit is contained in:
modmuss50 2016-04-07 15:57:20 +01:00
parent 9e107c849f
commit df651e7016
8 changed files with 146 additions and 27 deletions

View file

@ -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;
}

View file

@ -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() {
}
}