PfxCursorD.dpr 328 B

12345678910111213141516171819
  1. (*
  2. PFX Cursor Demo
  3. Use the mouse left and right buttons
  4. to change cursor TGLHUDSprite
  5. *)
  6. program PfxCursorD;
  7. uses
  8. Forms,
  9. fPfxCursorD in 'fPfxCursorD.pas' {Form1};
  10. {$R *.res}
  11. begin
  12. Application.Initialize;
  13. Application.CreateForm(TForm1, Form1);
  14. Application.CreateForm(TForm1, Form1);
  15. Application.Run;
  16. end.