e49194ff65
* [Script]: GetStat & SetStat from CoD4(x) * [Stats] Remove limitation * [Bullet] Clean this up
20 lines
432 B
C++
20 lines
432 B
C++
#pragma once
|
|
|
|
namespace Components
|
|
{
|
|
class ServerCommands : public Component
|
|
{
|
|
public:
|
|
ServerCommands();
|
|
|
|
using serverCommandHandler = std::function<bool(Command::Params*)>;
|
|
static void OnCommand(std::int32_t cmd, const serverCommandHandler& callback);
|
|
|
|
private:
|
|
static std::unordered_map<std::int32_t, serverCommandHandler> Commands;
|
|
|
|
static bool OnServerCommand();
|
|
static void CG_DeployServerCommand_Stub();
|
|
};
|
|
}
|