ActorProxyD.dpr 540 B

12345678910111213141516171819202122
  1. // THIS DEMO IS PART OF THE GLSCENE PROJECT
  2. {
  3. Version History:
  4. 30.01.2008 - mrqzzz - Initial version.
  5. 06.02.2008 - mrqzzz - Added "RayCastIntersect" for Actorproxy in demo.
  6. 15.03.2008 - DaStr - Updated RayCastIntersect stuff because of changes in
  7. the TGLActorProxy component.
  8. }
  9. program ActorProxyD;
  10. uses
  11. Forms,
  12. fActorProxyD in 'fActorProxyD.pas' {FormActorProxy};
  13. {$R *.res}
  14. begin
  15. Application.Initialize;
  16. Application.CreateForm(TFormActorProxy, FormActorProxy);
  17. Application.Run;
  18. end.