diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-21 10:42:10 +0200 |
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-21 10:42:10 +0200 |
| commit | 157cdabe941be14ca72022e7a7c8c55a582a7c1c (patch) | |
| tree | ca09caaa0b4a8ec8ba7c6a109445be4339f08cb1 /src/crepe/Script.h | |
| parent | 58dfdba241b501d4b1b9688b44ee775507ec325b (diff) | |
| parent | 0fdebc7d7a143ad2b9b5ed6a596bf4bb1f0f7d7f (diff) | |
merge loek/scripts into loek/config
Diffstat (limited to 'src/crepe/Script.h')
| -rw-r--r-- | src/crepe/Script.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/crepe/Script.h b/src/crepe/Script.h deleted file mode 100644 index cdd6814..0000000 --- a/src/crepe/Script.h +++ /dev/null @@ -1,15 +0,0 @@ -#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 |