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/editor/editor.c

29 lines
598 B
C

//=======================================================================
// Copyright XashXT Group 2007 ©
// editor.c - game editor dll
//=======================================================================
#include "editor.h"
stdlib_api_t std;
/*
==================
DllMain
==================
*/
launch_exp_t DLLEXPORT *CreateAPI( stdlib_api_t *input, void *unused )
{
static launch_exp_t Editor;
std = *input;
Editor.api_size = sizeof(launch_exp_t);
Editor.Init = InitEditor;
Editor.Main = EditorMain;
Editor.Free = FreeEditor;
return &Editor;
}