good
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
#pragma once
|
||||
|
||||
typedef void *(*InstantiateInterfaceFn)();
|
||||
|
||||
// Used internally to register classes.
|
||||
struct InterfaceReg {
|
||||
InstantiateInterfaceFn m_CreateFn;
|
||||
const char *m_pName;
|
||||
InterfaceReg *m_pNext; // For the global list.
|
||||
};
|
||||
Reference in New Issue
Block a user