diff options
Diffstat (limited to 'game/enemy')
-rw-r--r-- | game/enemy/BattleScript.cpp | 1 | ||||
-rw-r--r-- | game/enemy/BattleScript.h | 4 | ||||
-rw-r--r-- | game/enemy/BattleWonEvent.h | 5 |
3 files changed, 4 insertions, 6 deletions
diff --git a/game/enemy/BattleScript.cpp b/game/enemy/BattleScript.cpp index 1d263a3..2564e3d 100644 --- a/game/enemy/BattleScript.cpp +++ b/game/enemy/BattleScript.cpp @@ -3,7 +3,6 @@ #include "EnemyScript.h" #include <crepe/api/BehaviorScript.h> #include <crepe/api/Metadata.h> -#include "BattleWonEvent.h" #include "EnemyScript.h" using namespace std; using namespace crepe; diff --git a/game/enemy/BattleScript.h b/game/enemy/BattleScript.h index 55ca166..f91c597 100644 --- a/game/enemy/BattleScript.h +++ b/game/enemy/BattleScript.h @@ -4,6 +4,10 @@ #include <crepe/api/BehaviorScript.h> #include <crepe/api/Event.h> #include <random> +struct BattleWonEvent : public crepe::Event{ + +}; + struct BattleStartEvent : public crepe::Event{ public: int num_enemies = 0; diff --git a/game/enemy/BattleWonEvent.h b/game/enemy/BattleWonEvent.h deleted file mode 100644 index a48dbad..0000000 --- a/game/enemy/BattleWonEvent.h +++ /dev/null @@ -1,5 +0,0 @@ -#pragma once -#include <crepe/api/Event.h> -struct BattleWonEvent : public crepe::Event{ - -}; |