mirror of
https://github.com/libretro/Play-.git
synced 2024-11-27 18:50:28 +00:00
13 lines
140 B
C++
13 lines
140 B
C++
#pragma once
|
|
|
|
namespace Iop
|
|
{
|
|
class CSifMan;
|
|
|
|
class CSifModuleProvider
|
|
{
|
|
public:
|
|
virtual void RegisterSifModules(CSifMan&) = 0;
|
|
};
|
|
}
|