mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
14 lines
159 B
C++
14 lines
159 B
C++
#pragma once
|
|
|
|
class rFile;
|
|
|
|
class PKGLoader
|
|
{
|
|
rFile& pkg_f;
|
|
|
|
public:
|
|
PKGLoader(rFile& f);
|
|
virtual bool Install(std::string dest);
|
|
virtual bool Close();
|
|
};
|