Files
css-linux-cheat/include/cstrike/Classes/Interface.h
aixxe 5d3e60ddd3 Initial commit.
* Beginning reconstruction of Source SDK.

Signed-off-by: aixxe <me@aixxe.net>
2016-12-19 17:14:26 +00:00

11 lines
232 B
C++

#pragma once
typedef void* (*CreateInterfaceFn) (const char*, int*);
typedef void* (*InstantiateInterfaceFn) ();
class InterfaceReg {
public:
InstantiateInterfaceFn m_CreateFn;
const char* m_pName;
InterfaceReg* m_pNext;
};