diff options
Diffstat (limited to 'src/menu/UMenuInteract.pas')
-rw-r--r-- | src/menu/UMenuInteract.pas | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/menu/UMenuInteract.pas b/src/menu/UMenuInteract.pas index beb6bcef..7cb92025 100644 --- a/src/menu/UMenuInteract.pas +++ b/src/menu/UMenuInteract.pas @@ -39,6 +39,15 @@ type Num: integer; // number of this item in proper list like buttons, selects end; + { to handle the area where the mouse is over a control } + TMouseOverRect = record + X, Y: Real; + W, H: Real; + end; + + { to handle the on click action } + TMouseClickAction = (maNone, maReturn, maLeft, maRight); + implementation end. |