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:
13
arm9/source/cheats/ICheatRepository.h
Normal file
13
arm9/source/cheats/ICheatRepository.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
#include "GameCheats.h"
|
||||
|
||||
class ICheatRepository
|
||||
{
|
||||
public:
|
||||
virtual ~ICheatRepository() { }
|
||||
|
||||
virtual std::unique_ptr<GameCheats> GetCheatsForGame(u32 gameCode, u32 headerCrc32) const = 0;
|
||||
|
||||
protected:
|
||||
ICheatRepository() { }
|
||||
};
|
||||
Reference in New Issue
Block a user