mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-11 00:10:43 +00:00
17 lines
341 B
C++
17 lines
341 B
C++
#pragma once
|
|
|
|
#include "../IServerCliCommand.h"
|
|
|
|
namespace ServerRuntime
|
|
{
|
|
class CliCommandStop : public IServerCliCommand
|
|
{
|
|
public:
|
|
virtual const char *Name() const;
|
|
virtual const char *Usage() const;
|
|
virtual const char *Description() const;
|
|
virtual bool Execute(const ServerCliParsedLine &line, ServerCliEngine *engine);
|
|
};
|
|
}
|
|
|