mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
9 lines
130 B
C++
9 lines
130 B
C++
#pragma once
|
|
|
|
namespace fs { struct file; }
|
|
|
|
struct PKGLoader
|
|
{
|
|
static bool Install(const fs::file& pkg_f, std::string dest);
|
|
};
|