Added CreateInterface typedef to new interaces.h

This commit is contained in:
PixieCore 2022-04-26 16:14:39 +02:00
parent d5a2c2de09
commit daf1cfe14d
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#pragma once
#include "tier0/interface.h"
#include "vpc/interfaces.h"
class CEngineAPI
{

View File

@ -47,6 +47,7 @@ enum class InterfaceStatus_t : int
//-----------------------------------------------------------------------------
// Mapping of interface string to globals
//-----------------------------------------------------------------------------
typedef void* (*CreateInterfaceFn)(const char* pName, int* pReturnCode);
typedef void* (*InstantiateInterfaceFn)();
struct InterfaceGlobals_t
{