10 lines
183 B
C++
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>;
|
|
}; |