mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 09:06:54 +02:00
Initial work on implementing support for cheats
This commit is contained in:
25
arm9/source/cheats/CheatTreeItem.h
Normal file
25
arm9/source/cheats/CheatTreeItem.h
Normal 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) { }
|
||||
};
|
||||
Reference in New Issue
Block a user