fMainC.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //---------------------------------------------------------------------------
  2. #ifndef fMainCH
  3. #define fMainCH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include "GLS.BaseClasses.hpp"
  10. #include "GLS.Cadencer.hpp"
  11. #include "GLS.Coordinates.hpp"
  12. #include "GLS.Objects.hpp"
  13. #include "GLS.ParticleFX.hpp"
  14. #include "GLS.PerlinPFX.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 *GLSceneViewer;
  23. TPanel *Panel1;
  24. TGLScene *GLScene;
  25. TGLDummyCube *DCFire1;
  26. TGLDummyCube *DCFire2;
  27. TGLDummyCube *DCFire3;
  28. TGLDummyCube *DCFire4;
  29. TGLDummyCube *DCFire5;
  30. TGLParticleFXRenderer *ParticleFXRenderer;
  31. TGLDummyCube *DCTarget;
  32. TGLCamera *GLCamera;
  33. TGLPerlinPFXManager *SmokePFX;
  34. TGLCustomSpritePFXManager *FlamePFX;
  35. TGLCadencer *GLCadencer;
  36. TTimer *Timer;
  37. void __fastcall GLCadencerProgress(TObject *Sender, const double deltaTime, const double newTime);
  38. void __fastcall TimerTimer(TObject *Sender);
  39. private: // User declarations
  40. public: // User declarations
  41. __fastcall TForm1(TComponent* Owner);
  42. };
  43. //---------------------------------------------------------------------------
  44. extern PACKAGE TForm1 *Form1;
  45. //---------------------------------------------------------------------------
  46. #endif