统一native_sdk

This commit is contained in:
Huoji's
2023-10-02 17:31:02 +08:00
parent 7d24c5a405
commit dc75327dec
46 changed files with 573 additions and 629 deletions

10
csgo2/sdk_tools.h Normal file
View File

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