use of main.gui.gateway.GatewayView in project Eidolons by IDemiurge.
the class GatewayWindow method init.
public void init() {
panel = new G_Panel();
G_Panel backgroundPanel = initBackgroundPanel();
String pos = "pos 0 0, id backgroundPanel";
// panel.add(backgroundPanel, pos);
G_Panel buttonPanel = initButtonPanel();
pos = "pos 0 0, id buttonPanel";
panel.add(buttonPanel, pos);
view = new GatewayView();
pos = "pos 0 buttonPanel.y2, id gatewayView";
panel.add(view, pos);
// G_Panel statsPanel; //
// G_Panel sessionInfoPanel;
// G_Panel objEditPanel; // task, goal, ...
// G_Panel boxPanel; // switch style,
}
Aggregations