Console.dpr 420 B

1234567891011121314151617181920
  1. {: GLConsole demo
  2. See the interface part of GLConsole.pas for details...
  3. History:
  4. <li> 10/11/12 - PW - Added FPS output with GLSimpleNavigation instead of TTimer
  5. <li> 07/02/07 - DaStr - Initial version
  6. </ul>
  7. }
  8. program Console;
  9. uses
  10. Forms,
  11. fConsole in 'fConsole.pas' {FormConsole};
  12. {$R *.RES}
  13. begin
  14. Application.Initialize;
  15. Application.CreateForm(TFormConsole, FormConsole);
  16. Application.Run;
  17. end.