添加项目文件。

This commit is contained in:
Huoji's
2023-10-01 02:28:13 +08:00
parent ee12160e20
commit effb823be9
73 changed files with 7735 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#pragma once
#include "../sdk.h"
class CPlayerSlot
{
public:
CPlayerSlot(int slot) : m_Data(slot)
{
}
int Get() const
{
return m_Data;
}
bool operator==(const CPlayerSlot& other) const {
return other.m_Data == m_Data;
}
bool operator!=(const CPlayerSlot& other) const {
return other.m_Data != m_Data;
}
private:
int m_Data;
};