Initial work on the new in game wiki

This commit is contained in:
modmuss50 2016-04-05 20:09:07 +01:00
parent 4f01850616
commit 9e107c849f
10 changed files with 268 additions and 0 deletions

View file

@ -0,0 +1,20 @@
package techreborn.manual.saveFormat;
/**
* Created by Mark on 05/04/2016.
*/
public class Entry {
String registryName;
MetaData meta;
/**
* This says what type of page it is, crafting, image, ect
*
* //TODO use class name?
*/
String type;
EntryData data;
}

View file

@ -0,0 +1,15 @@
package techreborn.manual.saveFormat;
import java.util.HashMap;
/**
* Created by Mark on 05/04/2016.
*/
public class EntryData {
/**
* Use this to store data for a page
*/
HashMap<String, String> data;
}

View file

@ -0,0 +1,17 @@
package techreborn.manual.saveFormat;
import java.util.List;
/**
* Created by Mark on 05/04/2016.
*/
public class ManualFormat {
String name;
String modId;
List<Entry> blocks;
List<Entry> items;
}

View file

@ -0,0 +1,12 @@
package techreborn.manual.saveFormat;
/**
* Created by Mark on 05/04/2016.
*/
public class MetaData {
int startMeta;
int endMeta;
}