ironsphererpg/gui/TerraformerFullScreenGui.gui
Jusctsch5 a5143b67f7 T2RPG: Initial commit of ironsphererpg directory
Taking everything obtained from http://ironsphererpg2.webs.com/ and dumping it in a git repo
2015-01-18 21:06:06 -06:00

30 lines
643 B
Plaintext

//--- OBJECT WRITE BEGIN ---
new GameTSCtrl(TerraformerFullscreenGui) {
profile = "GuiDefaultProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "1";
setFirstResponder = "0";
modal = "1";
helpTag = "0";
new GuiButtonCtrl() {
profile = "GuiButtonProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "19 541";
extent = "100 20";
minExtent = "8 8";
visible = "True";
setFirstResponder = "True";
modal = "True";
command = "quit();";
helpTag = "0";
text = "Exit";
};
};
//--- OBJECT WRITE END ---