mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-27 03:53:33 +00:00
25 lines
392 B
C++
Executable File
25 lines
392 B
C++
Executable File
#pragma once
|
|
#ifndef MISSILEDATA_H
|
|
#define MISSILEDATA_H
|
|
|
|
#include "unitData.h"
|
|
#include "projectileData.h"
|
|
|
|
namespace battleship{
|
|
namespace projectileData{
|
|
const int selfDestructTime[unitData::numberOfUnits][13]{
|
|
{},
|
|
{},
|
|
{},
|
|
{},
|
|
{},
|
|
{},
|
|
{},
|
|
{10000,10000}
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|