basically nothing

main
Brett 2025-03-17 00:57:43 -04:00
parent b9c1da8cfc
commit 81180a74a6
3 changed files with 19 additions and 2 deletions

View File

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

View File

@ -20,10 +20,21 @@
#define ENEMIES_H #define ENEMIES_H
#include <fwddecl.h> #include <fwddecl.h>
#include <string>
namespace td namespace td
{ {
enum class enemy_id_t
{
};
class enemy_t
{
public:
private:
std::string texture_name;
};
} }
#endif //ENEMIES_H #endif //ENEMIES_H

View File

@ -19,10 +19,16 @@
#ifndef GAME_H #ifndef GAME_H
#define GAME_H #define GAME_H
#include <enemies.h>
#include <vector>
namespace td namespace td
{ {
class game_t class game_t
{}; {
public:
private:
};
} }
#endif //GAME_H #endif //GAME_H