CheatMenuSA/CheatMenu/Player.h

29 lines
743 B
C
Raw Normal View History

2020-12-02 16:19:16 -05:00
#pragma once
class Player
{
private:
2021-06-18 12:49:11 -04:00
inline static bool m_bGodMode;
inline static int m_nUiBodyState;
inline static bool m_bAimSkinChanger;
inline static SSearchData m_ClothData;
inline static bool m_bImagesLoaded;
inline static bool m_bModloaderInstalled;
struct m_KeepPosition
2020-12-02 16:19:16 -05:00
{
2021-06-18 12:49:11 -04:00
inline static bool m_bEnabled = false;
inline static CVector m_fPos;
};
struct m_CustomSkins
2020-12-02 16:19:16 -05:00
{
2021-06-18 12:49:11 -04:00
inline static std::string m_Path = paths::GetGameDirPathA() + std::string("\\modloader\\Custom Skins\\");;
inline static ImGuiTextFilter m_Filter;
inline static std::vector<std::string> m_List;
};
2020-12-02 16:19:16 -05:00
public:
2021-03-02 14:18:37 -05:00
Player();
2020-12-02 16:19:16 -05:00
static void ChangePlayerCloth(std::string& model);
static void ChangePlayerModel(std::string& model);
2021-02-24 16:54:45 -05:00
static void Draw();
2020-12-02 16:19:16 -05:00
};