mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 09:06:54 +02:00
18 lines
424 B
C++
18 lines
424 B
C++
#pragma once
|
|
#include "ICheatRepository.h"
|
|
|
|
/// @brief Class implementing an empty cheat repository.
|
|
class EmptyCheatRepository : public ICheatRepository
|
|
{
|
|
public:
|
|
std::unique_ptr<GameCheats> GetCheatsForGame(const FastFileRef& romFile) const override
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
void UpdateEnabledCheatsForGame(const std::unique_ptr<GameCheats>& cheats) const override
|
|
{
|
|
// Do nothing
|
|
}
|
|
};
|