blob: 18c1f288d5c1602611bc671eb1e1c10d24b8fe10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package binnie.craftgui.mod.database;
import binnie.core.genetics.BreedingSystem;
import binnie.craftgui.controls.ControlText;
import binnie.craftgui.controls.ControlTextCentered;
import binnie.craftgui.controls.core.Control;
import binnie.craftgui.core.IWidget;
public class PageBreederStats
extends Control
{
String player;
public PageBreederStats(IWidget parent, int w, int h, String player)
{
super(parent, 0.0F, 0.0F, w, h);
this.player = player;
ControlText pageBranchOverview_branchName = new ControlTextCentered(this, 8.0F, "§nStats§r");
BreedingSystem system = ((WindowAbstractDatabase)getSuperParent()).getBreedingSystem();
}
}
|