mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
14 lines
218 B
C++
Executable File
14 lines
218 B
C++
Executable File
#pragma once
|
|
#ifndef CRUISER_DATA_H
|
|
#define CRUISER_DATA_H
|
|
|
|
#include "vesselData.h"
|
|
|
|
namespace battleship{
|
|
namespace unitData {
|
|
const int maxGuidedMissiles[numberOfUnits]{0, 0, 0, 0, 6, 2};
|
|
}
|
|
}
|
|
|
|
#endif
|