aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Script.h
blob: cdd6814cf1ef6a8c48647beeac4ab5e14989b332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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.
};

} // namespace crepe