4d00fd72b5
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6115 fc73d0e0-1445-4013-8a0c-d673dee63da5
18 lines
281 B
C
18 lines
281 B
C
#include "../plugin.h"
|
|
qboolean VPK_Init(void);
|
|
qboolean VTF_Init(void);
|
|
qboolean MDL_Init(void);
|
|
qboolean VMT_Init(void);
|
|
qboolean VBSP_Init(void);
|
|
|
|
qboolean Plug_Init(void)
|
|
{
|
|
if (!VPK_Init())
|
|
return false;
|
|
VTF_Init();
|
|
VMT_Init();
|
|
MDL_Init();
|
|
VBSP_Init();
|
|
return true;
|
|
}
|
|
|