This repository has been archived on 2022-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Xash3DArchive/engine/engine.c

26 lines
604 B
C

//=======================================================================
// Copyright XashXT Group 2007 ©
// engine.c - engine entry base
//=======================================================================
#include "common.h"
/*
=================
Base Entry Point
=================
*/
launch_exp_t DLLEXPORT *CreateAPI( stdlib_api_t *input, void *unused )
{
static launch_exp_t Host;
com = *input;
Host.api_size = sizeof(launch_exp_t);
Host.Init = Host_Init;
Host.Main = Host_Main;
Host.Free = Host_Free;
Host.CPrint = Host_Print;
return &Host;
}