Files
PlanetFleet/explosion.h
2023-10-15 16:00:47 +03:00

11 lines
124 B
C++

#ifndef EXPLOSION_H
#define EXPLOSION_H
#include <string>
namespace battleship{
void detonate(std::string);
}
#endif