mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
11 lines
213 B
C++
11 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
|