blob: 43249e3e9fb744dcf01a8823ae0f04dc4a8b134b (
plain) (
tree)
|
|
unit UMenuInteract;
interface
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.
|