blob: ed247adcdc9f2376bfc8f6d81f33fe195648644c (
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
|
#pragma once
#include <vector>
namespace crepe {
class ScriptSystem;
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::BehaviorScript;
BehaviorScript * parent = nullptr;
};
} // namespace crepe
#include "Script.hpp"
|