mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
14 lines
178 B
C++
Executable File
14 lines
178 B
C++
Executable File
#ifndef CONSOLE_COMMAND_H
|
|
#define CONSOLE_COMMAND_H
|
|
|
|
#include <string>
|
|
|
|
namespace battleship{
|
|
class Console{
|
|
public:
|
|
static void execute(std::string);
|
|
};
|
|
}
|
|
|
|
#endif
|