mirror of
https://github.com/360NENZ/Taiga74164-Akebi-GC.git
synced 2025-09-19 20:26:20 +08:00
31 lines
530 B
C
31 lines
530 B
C
![]() |
#pragma once
|
||
|
#include <cheat-base/cheat/Feature.h>
|
||
|
#include <cheat-base/config/config.h>
|
||
|
|
||
|
namespace cheat::feature
|
||
|
{
|
||
|
|
||
|
class AutoCook : public Feature
|
||
|
{
|
||
|
public:
|
||
|
config::Field<config::Toggle<Hotkey>> f_Enabled;
|
||
|
config::Field<int> f_Count;
|
||
|
config::Field<int> f_Quality;
|
||
|
|
||
|
uint32_t CookCount;
|
||
|
|
||
|
static AutoCook& GetInstance();
|
||
|
|
||
|
const FeatureGUIInfo& GetGUIInfo() const override;
|
||
|
void DrawMain() override;
|
||
|
|
||
|
virtual bool NeedStatusDraw() const override;
|
||
|
void DrawStatus() override;
|
||
|
|
||
|
private:
|
||
|
|
||
|
AutoCook();
|
||
|
};
|
||
|
}
|
||
|
|