X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fshared%2Fcommands.hpp;h=c151da3c8ecec2885f4ae9f6c4db869d3c75517e;hb=cdd865c1934eccbb1f1d0ffaf041e53f0fdd524b;hp=53ab6977ab7339c01dcba36d56058858ee2e7c9d;hpb=10a310869c61cc52046e165f36ac9639fe9d0c69;p=blank.git diff --git a/src/shared/commands.hpp b/src/shared/commands.hpp index 53ab697..c151da3 100644 --- a/src/shared/commands.hpp +++ b/src/shared/commands.hpp @@ -6,10 +6,17 @@ namespace blank { +class ImpersonateCommand +: public CLI::Command { + + void Execute(CLI &, CLIContext &, TokenStreamReader &) override; + +}; + class TeleportCommand : public CLI::Command { - void Execute(CLI &, Player &, TokenStreamReader &) override; + void Execute(CLI &, CLIContext &, TokenStreamReader &) override; };