mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 09:06:54 +02:00
14 lines
249 B
C++
14 lines
249 B
C++
#pragma once
|
|
#include "GameCheats.h"
|
|
|
|
class ICheatRepository
|
|
{
|
|
public:
|
|
virtual ~ICheatRepository() { }
|
|
|
|
virtual std::unique_ptr<GameCheats> GetCheatsForGame(u32 gameCode, u32 headerCrc32) const = 0;
|
|
|
|
protected:
|
|
ICheatRepository() { }
|
|
};
|