diff options
author | Max-001 <maxsmits21@kpnmail.nl> | 2024-12-24 12:14:51 +0100 |
---|---|---|
committer | Max-001 <maxsmits21@kpnmail.nl> | 2024-12-24 12:14:51 +0100 |
commit | a0a3e7e2d12d3acb7bf4073cb5a10c08047cd08e (patch) | |
tree | 063137e04def88c0b3bb7404cf7630881a9c2f3e /game/EndGameScript.h | |
parent | 192aea3112af0b36f6f26670e66c7e24926c579a (diff) |
Added EndGameScript
Diffstat (limited to 'game/EndGameScript.h')
-rw-r--r-- | game/EndGameScript.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/game/EndGameScript.h b/game/EndGameScript.h new file mode 100644 index 0000000..b63ac9d --- /dev/null +++ b/game/EndGameScript.h @@ -0,0 +1,8 @@ +#pragma once + +#include <crepe/api/Script.h> + +class EndGameScript : public crepe::Script { +public: + void fixed_update(crepe::duration_t dt); +}; |