Move of stuffs

This commit is contained in:
WayofTime 2014-11-03 21:10:17 -05:00
parent 7946a7c226
commit 16efbcf7c5
26 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,14 @@
package bloodutils.api.compact;
import bloodutils.api.entries.IEntry;
public class Entry {
public Entry(IEntry[] entry, String name, int indexPage){
this.entry = entry;
this.name = name;
this.indexPage = indexPage - 1;
}
public IEntry[] entry;
public String name;
public int indexPage;
}