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
Raw Normal View History

2007-06-21 22:00:00 +02:00
//=======================================================================
// Copyright XashXT Group 2007 <20>
// editor.c - game editor dll
//=======================================================================
#include "editor.h"
2007-09-13 22:00:00 +02:00
stdlib_api_t std;
2007-06-21 22:00:00 +02:00
/*
==================
DllMain
==================
*/
2007-11-25 22:00:00 +01:00
launch_exp_t DLLEXPORT *CreateAPI( stdlib_api_t *input, void *unused )
2007-06-21 22:00:00 +02:00
{
2007-09-14 22:00:00 +02:00
static launch_exp_t Editor;
2007-06-21 22:00:00 +02:00
2007-11-11 22:00:00 +01:00
std = *input;
2007-09-11 22:00:00 +02:00
2007-09-14 22:00:00 +02:00
Editor.api_size = sizeof(launch_exp_t);
2007-06-21 22:00:00 +02:00
2007-08-13 22:00:00 +02:00
Editor.Init = InitEditor;
Editor.Main = EditorMain;
Editor.Free = FreeEditor;
2007-06-21 22:00:00 +02:00
2007-08-17 22:00:00 +02:00
return &Editor;
2007-06-21 22:00:00 +02:00
}