Files
LCEMP-Server/Commands/SaveAllCommand.h
2026-03-15 22:25:51 -03:00

11 lines
300 B
C++

#pragma once
#include "ServerCommand.h"
class SaveAllCommand : public ServerCommand
{
public:
wstring getName() { return L"save-all"; }
wstring getUsage() { return L"/save-all - Forces the server to save"; }
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
};