basically nothing
parent
b9c1da8cfc
commit
81180a74a6
|
@ -51,7 +51,7 @@ macro(blt_add_project name source type)
|
|||
project(tower-defense)
|
||||
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_UBSAN "Enable the ub sanitizer" OFF)
|
||||
|
|
|
@ -20,10 +20,21 @@
|
|||
#define ENEMIES_H
|
||||
|
||||
#include <fwddecl.h>
|
||||
#include <string>
|
||||
|
||||
namespace td
|
||||
{
|
||||
enum class enemy_id_t
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
class enemy_t
|
||||
{
|
||||
public:
|
||||
private:
|
||||
std::string texture_name;
|
||||
};
|
||||
}
|
||||
|
||||
#endif //ENEMIES_H
|
||||
|
|
|
@ -19,10 +19,16 @@
|
|||
#ifndef GAME_H
|
||||
#define GAME_H
|
||||
|
||||
#include <enemies.h>
|
||||
#include <vector>
|
||||
|
||||
namespace td
|
||||
{
|
||||
class game_t
|
||||
{};
|
||||
{
|
||||
public:
|
||||
private:
|
||||
};
|
||||
}
|
||||
|
||||
#endif //GAME_H
|
||||
|
|
Loading…
Reference in New Issue