mirror of
https://github.com/Ragora/TribesReplay.git
synced 2026-01-20 01:54:47 +00:00
30 lines
643 B
Plaintext
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 ---
|