]> git.localhorst.tv Git - blank.git/blob - src/shared/commands.hpp
1c00241850350ac80ce5be9b5390e3112483bb65
[blank.git] / src / shared / commands.hpp
1 #ifndef BLANK_SHARED_COMMANDS_HPP_
2 #define BLANK_SHARED_COMMANDS_HPP_
3
4 #include "CLI.hpp"
5
6
7 namespace blank {
8
9 class TeleportCommand
10 : public CLI::Command {
11
12         void Execute(CLI &, CLIContext &, TokenStreamReader &) override;
13
14 };
15
16 }
17
18 #endif