| 12345678910111213141516171819 |
- (*
- PFX Cursor Demo
- Use the mouse left and right buttons
- to change cursor TGLHUDSprite
- *)
- program PfxCursorD;
- uses
- Forms,
- fPfxCursorD in 'fPfxCursorD.pas' {Form1};
- {$R *.res}
- begin
- Application.Initialize;
- Application.CreateForm(TForm1, Form1);
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.
|