blob: 1d05a754cd796b212a17a9e0d542f961dba7c2de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "../Component.h"
#include "../Script.h"
namespace crepe::api {
class BehaviorScript : public Script, public Component {
// only allow ComponentManager to instantiate scripts
friend class ComponentManager;
protected:
BehaviorScript();
};
} // namespace crepe::api
|