mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-29 04:23:34 +00:00
17 lines
268 B
C++
Executable File
17 lines
268 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
|