TurnStarted.h 470 B

1234567891011121314151617181920212223242526
  1. /*
  2. * TurnStarted.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include <vcmi/events/TurnStarted.h>
  12. namespace events
  13. {
  14. class DLL_LINKAGE CTurnStarted : public TurnStarted
  15. {
  16. public:
  17. CTurnStarted();
  18. bool isEnabled() const override;
  19. static void defaultExecute(const EventBus * bus);
  20. };
  21. }