aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Server/Console/commands/stop/CliCommandStop.h
blob: 2297c6732b68d0ff016a8833c357f1f4bf983aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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);
	};
}