diff options
Diffstat (limited to 'game/enemy/BattleScript.h')
-rw-r--r-- | game/enemy/BattleScript.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/game/enemy/BattleScript.h b/game/enemy/BattleScript.h new file mode 100644 index 0000000..ddd0be1 --- /dev/null +++ b/game/enemy/BattleScript.h @@ -0,0 +1,24 @@ +#pragma once + +#include <crepe/api/BehaviorScript.h> +#include <crepe/api/Event.h> +#include <crepe/api/Script.h> +#include <random> +struct BattleWonEvent : public crepe::Event {}; + +struct BattleStartEvent : public crepe::Event { +public: + int num_enemies = 0; +}; +class BattleScript : public crepe::Script { +public: + BattleScript(); + void init() override; + void fixed_update(crepe::duration_t dt) override; + +private: + bool battle_active = false; + std::random_device rd; + std::default_random_engine engine; + bool create_battle(const BattleStartEvent & e); +}; |