| 12345678910111213141516171819202122 |
- // THIS DEMO IS PART OF THE GLSCENE PROJECT
- {
- Version History:
- 30.01.2008 - mrqzzz - Initial version.
- 06.02.2008 - mrqzzz - Added "RayCastIntersect" for Actorproxy in demo.
- 15.03.2008 - DaStr - Updated RayCastIntersect stuff because of changes in
- the TGLActorProxy component.
- }
- program ActorProxyD;
- uses
- Forms,
- fActorProxyD in 'fActorProxyD.pas' {FormActorProxy};
- {$R *.res}
- begin
- Application.Initialize;
- Application.CreateForm(TFormActorProxy, FormActorProxy);
- Application.Run;
- end.
|