mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 09:06:54 +02:00
10 lines
196 B
C++
10 lines
196 B
C++
#pragma once
|
|
#include <memory>
|
|
#include "UsrCheatRepository.h"
|
|
|
|
class UsrCheatRepositoryFactory
|
|
{
|
|
public:
|
|
std::unique_ptr<UsrCheatRepository> FromUsrCheatDat(const TCHAR* usrCheatDatPath);
|
|
};
|