mirror of
https://github.com/ProgramSnail/rts_game_backend.git
synced 2026-01-03 23:38:16 +00:00
some additional functions
This commit is contained in:
parent
8553878b4a
commit
5173f4f2a9
23 changed files with 214 additions and 24 deletions
|
|
@ -0,0 +1,15 @@
|
|||
#include <vector>
|
||||
#include "unit_module.hpp"
|
||||
#include "unit_memory_elem.hpp"
|
||||
|
||||
#pragma ONCE
|
||||
|
||||
namespace unit {
|
||||
class Unit {
|
||||
private:
|
||||
std::vector<Module> modules;
|
||||
std::vector<MemoryElem> memory;
|
||||
public:
|
||||
Unit();
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue