MinecraftConsoles/Minecraft.Server/Console/commands/stop/CliCommandStop.h
kuwacom 26dc63af6b refactor: refactor command path structure
As the number of commands has increased and become harder to navigate, each command has been organized into separate folders.
2026-03-13 00:14:20 +09:00

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);
};
}