mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
14 lines
202 B
C++
14 lines
202 B
C++
#ifndef BUILDABLE_UNIT_H
|
|
#define BUILDABLE_UNIT_H
|
|
|
|
namespace battleship{
|
|
struct BuildableUnit{
|
|
int id;
|
|
bool buildable;
|
|
|
|
BuildableUnit(int i, bool build) : id(i), buildable(build){}
|
|
};
|
|
}
|
|
|
|
#endif
|