Files
PlanetFleet/cruiserData.h
2021-10-27 21:37:09 +03:00

17 lines
254 B
C++
Executable File

#pragma once
#ifndef CRUISER_DATA_H
#define CRUISER_DATA_H
#include "vesselData.h"
namespace game
{
namespace content{
namespace unitData {
const int maxGuidedMissiles[numberOfUnits]{0, 0, 0, 0, 6, 2};
}
}
}
#endif