mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-21 23:14:50 +00:00
11 lines
302 B
C++
11 lines
302 B
C++
#pragma once
|
|
#include "ServerCommand.h"
|
|
|
|
class SaveOnCommand : public ServerCommand
|
|
{
|
|
public:
|
|
wstring getName() { return L"save-on"; }
|
|
wstring getUsage() { return L"/save-on - Enables automatic server saves"; }
|
|
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
|
|
};
|