mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 17:16:57 +02:00
18 lines
364 B
C++
18 lines
364 B
C++
#pragma once
|
|
|
|
class CheatCategory;
|
|
class Cheat;
|
|
|
|
class ICheatCategory
|
|
{
|
|
public:
|
|
virtual ~ICheatCategory() = default;
|
|
|
|
virtual bool GetIsMaxOneCheatActive() const = 0;
|
|
virtual const CheatCategory* GetCategories(u32& numberOfCategories) const;
|
|
virtual const Cheat* GetCheats(u32& numberOfCheats) const;
|
|
|
|
protected:
|
|
ICheatCategory() = default;
|
|
};
|