mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-03 13:15:17 -06: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);
|
|
};
|