mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
12 lines
140 B
C++
12 lines
140 B
C++
#pragma once
|
|
|
|
namespace Iop
|
|
{
|
|
class CSifMan;
|
|
|
|
class CSifModuleProvider
|
|
{
|
|
public:
|
|
virtual void RegisterSifModules(CSifMan&) = 0;
|
|
};
|
|
}
|