mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 00:56:55 +02:00
26 lines
447 B
C++
26 lines
447 B
C++
#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) { }
|
|
};
|