Files
csgo2_tiny_server_plugin_sy…/csgo2/sdk_tools.h
2023-10-02 17:31:02 +08:00

10 lines
183 B
C++

#pragma once
#include "head.h"
enum _ChatType
{
kTeam,
kAll
};
namespace SdkTools {
auto ProcessChatString(const std::string& input) -> std::tuple<bool, _ChatType, std::string>;
};