SelectLightAnimationDialog.h 818 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. // Description : Used in a property item to select a light animation
  9. #ifndef CRYINCLUDE_EDITOR_SELECTLIGHTANIMATIONDIALOG_H
  10. #define CRYINCLUDE_EDITOR_SELECTLIGHTANIMATIONDIALOG_H
  11. #pragma once
  12. #if !defined(Q_MOC_RUN)
  13. #include "GenericSelectItemDialog.h"
  14. #endif
  15. class CSelectLightAnimationDialog
  16. : public CGenericSelectItemDialog
  17. {
  18. Q_OBJECT
  19. public:
  20. CSelectLightAnimationDialog(QWidget* pParent = nullptr);
  21. protected:
  22. void OnInitDialog() override;
  23. virtual void GetItems(std::vector<SItem>& outItems) override;
  24. };
  25. #endif // CRYINCLUDE_EDITOR_SELECTLIGHTANIMATIONDIALOG_H