mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
10 lines
178 B
C++
10 lines
178 B
C++
#pragma once
|
|
|
|
#include "Types.h"
|
|
|
|
class CSifModule
|
|
{
|
|
public:
|
|
virtual ~CSifModule() {}
|
|
virtual bool Invoke(uint32, uint32*, uint32, uint32*, uint32, uint8*) = 0;
|
|
};
|