mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-25 01:32:58 +00:00
16 lines
347 B
C++
16 lines
347 B
C++
#pragma once
|
|
|
|
#include "../IServerCliCommand.h"
|
|
|
|
namespace ServerRuntime
|
|
{
|
|
class CliCommandWeather : public IServerCliCommand
|
|
{
|
|
public:
|
|
const char *Name() const override;
|
|
const char *Usage() const override;
|
|
const char *Description() const override;
|
|
bool Execute(const ServerCliParsedLine &line, ServerCliEngine *engine) override;
|
|
};
|
|
}
|