blob: 21155b6ff54f00cbb52aa6e3d23255e7e8491526 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include "Command.h"
class KillCommand : public Command
{
public:
virtual EGameCommand getId();
virtual void execute(std::shared_ptr<CommandSender> source, byteArray commandData);
};
|