Unit1.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <vcl.h>
  6. #include <tchar.h>
  7. #include <System.Classes.hpp>
  8. #include <Vcl.Controls.hpp>
  9. #include <Vcl.StdCtrls.hpp>
  10. #include <Vcl.Forms.hpp>
  11. #include "GLS.BaseClasses.hpp"
  12. #include "GLS.Cadencer.hpp"
  13. #include "GLS.Coordinates.hpp"
  14. #include "GLS.Objects.hpp"
  15. #include "GLS.Scene.hpp"
  16. #include "GLS.SceneViewer.hpp"
  17. #include <Vcl.ExtCtrls.hpp>
  18. //---------------------------------------------------------------------------
  19. class TForm1 : public TForm
  20. {
  21. __published: // IDE-managed Components
  22. TGLSceneViewer *GLSceneViewer1;
  23. TStaticText *StaticText1;
  24. TGLScene *GLScene1;
  25. TGLDummyCube *DummyCube1;
  26. TGLCamera *GLCamera1;
  27. TTimer *Timer1;
  28. TGLCadencer *GLCadencer1;
  29. void __fastcall FormCreate(TObject *Sender);
  30. void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
  31. void __fastcall Timer1Timer(TObject *Sender);
  32. private: // User declarations
  33. public: // User declarations
  34. __fastcall TForm1(TComponent* Owner);
  35. };
  36. //---------------------------------------------------------------------------
  37. extern PACKAGE TForm1 *Form1;
  38. //---------------------------------------------------------------------------
  39. #endif