Initial commit.
* Beginning reconstruction of Source SDK. Signed-off-by: aixxe <me@aixxe.net>
This commit is contained in:
11
include/cstrike/Classes/Interface.h
Normal file
11
include/cstrike/Classes/Interface.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
typedef void* (*CreateInterfaceFn) (const char*, int*);
|
||||
typedef void* (*InstantiateInterfaceFn) ();
|
||||
|
||||
class InterfaceReg {
|
||||
public:
|
||||
InstantiateInterfaceFn m_CreateFn;
|
||||
const char* m_pName;
|
||||
InterfaceReg* m_pNext;
|
||||
};
|
||||
Reference in New Issue
Block a user