2
0

Unit1.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <vcl.h>
  6. #include <tchar.h>
  7. //---------------------------------------------------------------------------
  8. #include <System.Classes.hpp>
  9. #include <Vcl.Controls.hpp>
  10. #include <Vcl.StdCtrls.hpp>
  11. #include <Vcl.Forms.hpp>
  12. #include "GLBaseClasses.hpp"
  13. #include "GLCadencer.hpp"
  14. #include "GLCoordinates.hpp"
  15. #include "GLCrossPlatform.hpp"
  16. #include "GLObjects.hpp"
  17. #include "GLScene.hpp"
  18. #include "GLSimpleNavigation.hpp"
  19. #include "GLWin32Viewer.hpp"
  20. //---------------------------------------------------------------------------
  21. class TForm1 : public TForm
  22. {
  23. __published: // IDE-managed Components
  24. TGLSceneViewer *GLSceneViewer1;
  25. TGLScene *GLScene1;
  26. TGLDummyCube *DummyCube1;
  27. TGLLightSource *GLLightSource1;
  28. TGLCamera *GLCamera1;
  29. TGLCadencer *GLCadencer1;
  30. TGLSimpleNavigation *GLSimpleNavigation1;
  31. void __fastcall FormCreate(TObject *Sender);
  32. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  33. private: // User declarations
  34. public: // User declarations
  35. __fastcall TForm1(TComponent* Owner);
  36. };
  37. //---------------------------------------------------------------------------
  38. extern PACKAGE TForm1 *Form1;
  39. //---------------------------------------------------------------------------
  40. #endif