Initial work on implementing support for cheats

This commit is contained in:
Gericom
2026-02-22 20:28:35 +01:00
parent f73c8b0547
commit dddee0bb94
28 changed files with 966 additions and 17 deletions

View File

@@ -0,0 +1,25 @@
#pragma once
class CheatTreeItem
{
public:
const char* GetName() const
{
return _name;
}
const char* GetDescription() const
{
return _description;
}
protected:
const char* _name;
const char* _description;
CheatTreeItem()
: _name(nullptr), _description(nullptr) { }
CheatTreeItem(const char* name, const char* description)
: _name(name), _description(description) { }
};