A lot of work on the wiki designer

This commit is contained in:
modmuss50 2016-04-08 15:19:10 +01:00
parent bc7b5b2566
commit 77102819a4
No known key found for this signature in database
GPG key ID: C69B0D76D1E5F55C
8 changed files with 154 additions and 26 deletions

View file

@ -10,6 +10,6 @@ public class EntryData {
/**
* Use this to store data for a page
*/
HashMap<String, String> data;
public HashMap<String, String> data;
}

View file

@ -7,11 +7,11 @@ import java.util.List;
*/
public class ManualFormat {
String name;
public String name;
String modId;
public String modId;
List<Entry> entries;
public List<Entry> entries;
public ManualFormat(String name, String modId, List<Entry> entries) {
this.name = name;