source: tags/1.1.0/UControls.pas

Last change on this file was 64, checked in by chronos, 3 years ago
  • Added: Support for dark mode.
  • Added: Top left back button to exit from game to game menu. Allow to restart game and continue with playing.
  • Added: Support for Escape key for exiting game and menu.
File size: 180 bytes
Line 
1unit UControls;
2
3{$mode delphi}
4
5interface
6
7uses
8 Classes, SysUtils;
9
10type
11 TControl = class
12
13 end;
14
15 TButton = class(TControl)
16 Text: string;
17 end;
18
19implementation
20
21end.
22
Note: See TracBrowser for help on using the repository browser.