Files
Akebi-GC3_0/cheat-library/src/user/cheat/world/AutoCook.h
RyujinZX 4cab1e0d49 upd ryujin
Update CD Reduce
Update NoClip
Add Show Chest
Add Auto Cook
2022-05-26 03:59:23 +03:00

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();
};
}