Files
csgo2_tiny_server_plugin_sy…/csgo2/player_manager.h

11 lines
475 B
C++

#pragma once
#include "pch.h"
#include "sdk/player/playerslot.h"
namespace PlayerManager {
auto AddPlayerNameToPlayerNameList(const CPlayerSlot PlayerSlot,
const char* PlayerName) -> void;
auto RemovePlayerNameFromPlayerNameList(const CPlayerSlot PlayerSlot,
const char* PlayerName) -> void;
auto GetPlayerNameByPlayerSlot(const CPlayerSlot PlayerSlot) -> std::string;
}; // namespace PlayerManager