aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Server/Console/commands/list/CliCommandList.h
blob: ad26dcbc2cce9d4e569296cdfd398a43a1f559d9 (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 CliCommandList : 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);
	};
}