GizmoEx.dpr 405 B

123456789101112131415161718192021
  1. {: GLGizmoEx component demo.
  2. Version History:
  3. <li> 10/11/2012 - PW - Changed FPS output to Panel1.Caption
  4. <li> 29/09/2007 - DaStr - Initial version.
  5. <li> 07/10/2009 - Predator - Updated version.
  6. }
  7. program GizmoEx;
  8. uses
  9. Forms,
  10. fGizmoEx in 'fGizmoEx.pas' {FormGizmoEx};
  11. {$R *.res}
  12. Begin
  13. Application.Initialize;
  14. Application.CreateForm(TFormGizmoEx, FormGizmoEx);
  15. Application.Run;
  16. End.