reorder so it can compile

main
Brett 2025-03-17 13:09:40 -04:00
parent 2753d6921f
commit aa5a27865d
2 changed files with 11 additions and 11 deletions

View File

@ -51,7 +51,7 @@ macro(blt_add_project name source type)
project(tower-defense)
endmacro()
project(tower-defense VERSION 0.0.13)
project(tower-defense VERSION 0.0.14)
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)

View File

@ -32,16 +32,6 @@ namespace td
private:
};
class event_t
{
event_handler_t handler;
std::string signature;
public:
void callHandler(void* target) { handler.call(target); }
private:
};
class event_handler_t
{
// I don't want to keep the parameter as a void pointer, maybe it would be nice to have a gameObject class or sumthing,
@ -55,6 +45,16 @@ namespace td
private:
};
class event_t
{
event_handler_t handler;
std::string signature;
public:
void callHandler(void* target) { handler.call(target); }
private:
};
class event_scheduler_t
{
public: