mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-05-22 03:25:30 +00:00
12 lines
403 B
C++
12 lines
403 B
C++
#pragma once
|
|
#include "GenericCommand.h"
|
|
|
|
class TeleportCommand : public GenericCommand {
|
|
public:
|
|
TeleportCommand(const wchar_t* _name, const wchar_t* _description) : GenericCommand(_name, _description) {};
|
|
|
|
void Execute(CommandSenderType senderType, std::vector<std::wstring>& args, std::shared_ptr<ServerPlayer> player) override {
|
|
player->sendMessage(L"This Be A Working Command Callback");
|
|
|
|
}
|
|
}; |