blob: ba4073a94c3af5a3749c870cc69670e9fe9034ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
namespace crepe {
class Script {
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.
};
}
|