开始写龙盒

This commit is contained in:
2022-03-10 20:33:31 +08:00
parent 0f02f0fb62
commit b3ffa8da6a
38 changed files with 15158 additions and 12 deletions

View File

@@ -25,9 +25,9 @@ public:
static void R_Register_Pack();
static bool net_get8(std::int8_t& v);
static bool net_get16(std::int16_t& v);
static bool net_get32(std::int32_t& v);
static bool net_getS(char* v, int sz);
static bool Net_Get_Byte(BYTE& v);
static bool Net_Get_Short(short int& v);
static bool Net_Get_Dword(DWORD& v);
static bool Net_Get_Buffer(char* v, int sz);
};