Files
PlanetFleet/buildableUnit.h
devZoGok 43ccac92d4 structures work only once complete
research structures research when they have min 30% HP
2024-02-25 16:46:52 +02:00

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