diff options
Diffstat (limited to '')
-rw-r--r-- | Game/Code/Menu/UMenuInteract.pas | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Game/Code/Menu/UMenuInteract.pas b/Game/Code/Menu/UMenuInteract.pas new file mode 100644 index 00000000..78f9bd89 --- /dev/null +++ b/Game/Code/Menu/UMenuInteract.pas @@ -0,0 +1,16 @@ +unit UMenuInteract;
+
+interface
+
+{$I switches.inc}
+
+type
+ TInteract = record // for moving thru menu
+ Typ: integer; // 0 - button, 1 - select, 2 - Text, 3 - Select SLide, 5 - ButtonCollection Child
+ Num: integer; // number of this item in proper list like buttons, selects
+ end;
+
+implementation
+
+end.
+
\ No newline at end of file |