blob: 4950b5c0b866bf2ca6471284dd3f800c11773041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#pragma once
#include <vector>
namespace crepe {
class ScriptSystem;
}
namespace crepe::api {
class BehaviorScript;
class Script {
friend class crepe::ScriptSystem;
protected:
virtual void init() {}
virtual void update() {}
// NOTE: additional *events* (like unity's OnDisable and OnEnable) should be
// implemented as member methods in derivative user script classes and
// registered in init(), otherwise this class will balloon in size with each
// added event.
protected:
template<typename T>
T & get_component();
template<typename T>
std::vector<std::reference_wrapper<T>> get_components();
private:
friend class crepe::api::BehaviorScript;
BehaviorScript * parent = nullptr;
};
} // namespace crepe::api
#include "Script.hpp"
|