| 1234567891011121314151617181920 |
- {
- A simple demo that shows how to use the TGLGameMenu component
- Version history:
- 20/02/07 - DaStr - Initial version
- 03/07/07 - DaStr - Keyboard renamed to GLKeyboard (BugTracker ID = 1678646)
- }
- program GameMenuD;
- uses
- Forms,
- fGameMenuD in 'fGameMenuD.pas' {FormGameMenu};
- {$R *.res}
- begin
- Application.Initialize;
- Application.CreateForm(TFormGameMenu, FormGameMenu);
- Application.Run;
- end.
|