mirror of
https://github.com/SunsetMkt/Akebi-GC.git
synced 2025-09-19 20:16:01 +08:00
27 lines
441 B
C++
27 lines
441 B
C++
#pragma once
|
|
#include <cheat-base/cheat/Feature.h>
|
|
#include <cheat-base/config/config.h>
|
|
|
|
namespace cheat::feature
|
|
{
|
|
|
|
class HideUI : public Feature
|
|
{
|
|
public:
|
|
config::Field<bool> f_Enabled;
|
|
|
|
static HideUI& GetInstance();
|
|
|
|
const FeatureGUIInfo& GetGUIInfo() const override;
|
|
void DrawMain() override;
|
|
|
|
virtual bool NeedStatusDraw() const override;
|
|
void DrawStatus() override;
|
|
void OnGameUpdate();
|
|
|
|
private:
|
|
HideUI();
|
|
};
|
|
}
|
|
|