diff options
| author | jaroWMR <jarorutjes07@gmail.com> | 2024-10-23 12:32:06 +0200 |
|---|---|---|
| committer | jaroWMR <jarorutjes07@gmail.com> | 2024-10-23 12:32:06 +0200 |
| commit | 96da34c1f973525ee57b71ea031d11a966903150 (patch) | |
| tree | f02d9e743ae852715397bd406b54f5de5fa5d29f /src/crepe/Script.h | |
| parent | cead795b7ff7135e13caf9ad3b76628070391458 (diff) | |
| parent | 30d84ef9ad4a0010288db18294766fd4d5ed6f4a (diff) | |
merged with master
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 |