mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
11 lines
124 B
C++
11 lines
124 B
C++
#ifndef EXPLOSION_H
|
|
#define EXPLOSION_H
|
|
|
|
#include <string>
|
|
|
|
namespace battleship{
|
|
void detonate(std::string);
|
|
}
|
|
|
|
#endif
|