diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-24 10:52:21 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-24 10:52:21 +0200 |
commit | 39054829fa69bcfa2b468015dc3852a2f8deac9f (patch) | |
tree | e7726d90fb3c23a15919360dd10bdf709e7e087a /src/crepe/api/BehaviorScript.h | |
parent | dd9940720cde6975f79d65e08075687c47f0aec6 (diff) | |
parent | 5447ddd896eb49ea9fd9f9191a277fd1d5730aa3 (diff) |
merge master into loek/config
Diffstat (limited to 'src/crepe/api/BehaviorScript.h')
-rw-r--r-- | src/crepe/api/BehaviorScript.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/api/BehaviorScript.h b/src/crepe/api/BehaviorScript.h index 6ce6798..cb37a78 100644 --- a/src/crepe/api/BehaviorScript.h +++ b/src/crepe/api/BehaviorScript.h @@ -2,7 +2,7 @@ #include <memory> -#include "Component.h" +#include "../Component.h" #include "Script.h" namespace crepe { @@ -17,7 +17,7 @@ class Script; class BehaviorScript : public Component { protected: friend class crepe::ComponentManager; - BehaviorScript(); + using Component::Component; public: virtual ~BehaviorScript() = default; |