iw4x-client/src/Components/Modules/ServerCommands.hpp
2022-04-07 11:41:20 +02:00

19 lines
371 B
C++

#pragma once
namespace Components
{
class ServerCommands : public Component
{
public:
ServerCommands();
static void OnCommand(std::int32_t cmd, Utils::Slot<bool(Command::Params*)> cb);
private:
static std::unordered_map<std::int32_t, Utils::Slot<bool(Command::Params*)>> Commands;
static bool OnServerCommand();
static void OnServerCommandStub();
};
}