diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-13 20:52:08 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-13 20:52:08 +0200 |
commit | f9aa198eef7b85eeba3bac4c4fe2d4578b836bbf (patch) | |
tree | 3d374caa0510aa6389bd5901b83fe5b5b81d6dc1 /src/example/script.cpp | |
parent | 5d041cce13da66aa3457d236579a9ac90ebf7618 (diff) |
WIP behavior script (problems)
Diffstat (limited to 'src/example/script.cpp')
-rw-r--r-- | src/example/script.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/example/script.cpp b/src/example/script.cpp index 28605c7..b8b3c8d 100644 --- a/src/example/script.cpp +++ b/src/example/script.cpp @@ -11,9 +11,10 @@ #include <crepe/api/BehaviorScript.h> using namespace crepe; +using namespace crepe::api; using namespace std; -class MyScript : public api::BehaviorScript { +class MyScript : public BehaviorScript { void update() { dbg_trace(); } |