GameMenuD.dpr 414 B

1234567891011121314151617181920
  1. {
  2. A simple demo that shows how to use the TGLGameMenu component
  3. Version history:
  4. 20/02/07 - DaStr - Initial version
  5. 03/07/07 - DaStr - Keyboard renamed to GLKeyboard (BugTracker ID = 1678646)
  6. }
  7. program GameMenuD;
  8. uses
  9. Forms,
  10. fGameMenuD in 'fGameMenuD.pas' {FormGameMenu};
  11. {$R *.res}
  12. begin
  13. Application.Initialize;
  14. Application.CreateForm(TFormGameMenu, FormGameMenu);
  15. Application.Run;
  16. end.