Work on a seeecret project
This commit is contained in:
parent
97b90eaf63
commit
6e4de4f6e9
58 changed files with 3504 additions and 42 deletions
|
@ -0,0 +1,30 @@
|
|||
package WayofTime.alchemicalWizardry.client.book.pages;
|
||||
|
||||
import org.w3c.dom.Element;
|
||||
|
||||
import WayofTime.alchemicalWizardry.client.GuiManual;
|
||||
|
||||
|
||||
public abstract class BookPage
|
||||
{
|
||||
protected GuiManual manual;
|
||||
protected int side;
|
||||
|
||||
|
||||
public void init (GuiManual manual, int side)
|
||||
{
|
||||
this.manual = manual;
|
||||
this.side = side;
|
||||
}
|
||||
|
||||
|
||||
public abstract void readPageFromXML (Element element);
|
||||
|
||||
|
||||
public void renderBackgroundLayer (int localwidth, int localheight)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
public abstract void renderContentLayer (int localwidth, int localheight);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue