mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
12 lines
213 B
C
12 lines
213 B
C
![]() |
#ifndef _SIFMODULE_H_
|
||
|
#define _SIFMODULE_H_
|
||
|
|
||
|
class CSifModule
|
||
|
{
|
||
|
public:
|
||
|
virtual ~CSifModule() {}
|
||
|
virtual void Invoke(uint32, uint32*, uint32, uint32*, uint32, uint8*) = 0;
|
||
|
};
|
||
|
|
||
|
#endif
|