Animations.h 693 B

1234567891011121314151617181920
  1. //---------------------------------------------------------------------------
  2. #ifndef AnimationsH
  3. #define AnimationsH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include "PngImageList.hpp"
  7. #include <Vcl.Controls.hpp>
  8. #include <Vcl.ImgList.hpp>
  9. //---------------------------------------------------------------------------
  10. class TAnimationsModule : public TDataModule
  11. {
  12. __published:
  13. TPngImageList *AnimationImages;
  14. public:
  15. __fastcall TAnimationsModule(TComponent * Owner);
  16. virtual __fastcall ~TAnimationsModule();
  17. };
  18. //---------------------------------------------------------------------------
  19. #endif