mirror of
https://github.com/360NENZ/Taiga74164-Akebi-GC.git
synced 2025-07-18 17:38:18 +08:00

`cheat-base` add x32 build `manual map` and `load library` injection moved to `cheat-base` removed unnecessary packet sniffer functionality fixed several type conversionals `cheat-library` now is startup by default little changes in `Logger`, `PatternScanner`, `ProtoTransfer` updated detours
26 lines
578 B
C++
26 lines
578 B
C++
#pragma once
|
|
#include <cheat-base/cheat/Feature.h>
|
|
#include <cheat-base/config/config.h>
|
|
#include <cheat-base/thread-safe.h>
|
|
|
|
namespace cheat::feature
|
|
{
|
|
class Browser : public Feature
|
|
{
|
|
public:
|
|
config::Field<config::Toggle<Hotkey>> f_Enabled;
|
|
|
|
static Browser& GetInstance();
|
|
const FeatureGUIInfo& GetGUIInfo() const override;
|
|
void DrawMain() override;
|
|
bool NeedStatusDraw() const override;
|
|
void DrawStatus() override;
|
|
|
|
private:
|
|
SafeQueue<uint32_t> toBeUpdate;
|
|
SafeValue<int64_t> nextUpdate;
|
|
int f_DelayUpdate = 20;
|
|
void OnGameUpdate();
|
|
Browser();
|
|
};
|
|
} |