10 lines
194 B
C
10 lines
194 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Command.h"
|
||
|
|
|
||
|
|
class KillCommand : public Command
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
virtual EGameCommand getId();
|
||
|
|
virtual void execute(shared_ptr<CommandSender> source, byteArray commandData);
|
||
|
|
};
|