mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 18:31:27 +00:00
hook in the plugin system
This commit is contained in:
parent
3f8ef22b61
commit
1fbb62d518
3 changed files with 8 additions and 0 deletions
|
@ -42,6 +42,7 @@
|
|||
#include "QF/console.h"
|
||||
#include "QF/keys.h"
|
||||
#include "QF/msg.h"
|
||||
#include "QF/plugin.h"
|
||||
#include "QF/qargs.h"
|
||||
#include "QF/sys.h"
|
||||
#include "QF/va.h"
|
||||
|
@ -924,6 +925,8 @@ Host_Init (quakeparms_t *parms)
|
|||
Cmd_StuffCmds_f ();
|
||||
Cbuf_Execute_Sets ();
|
||||
|
||||
PI_Init ();
|
||||
|
||||
V_Init ();
|
||||
S_Init_Cvars ();
|
||||
SCR_Init_Cvars ();
|
||||
|
|
|
@ -84,6 +84,7 @@
|
|||
#include "QF/msg.h"
|
||||
#include "net.h"
|
||||
#include "pmove.h"
|
||||
#include "QF/plugin.h"
|
||||
#include "QF/qendian.h"
|
||||
#include "QF/quakefs.h"
|
||||
#include "QF/qargs.h"
|
||||
|
@ -1601,6 +1602,8 @@ Host_Init (void)
|
|||
Cmd_StuffCmds_f ();
|
||||
Cbuf_Execute_Sets ();
|
||||
|
||||
PI_Init ();
|
||||
|
||||
CL_Cam_Init_Cvars ();
|
||||
CL_Input_Init_Cvars ();
|
||||
Skin_Init_Cvars ();
|
||||
|
|
|
@ -48,6 +48,7 @@
|
|||
#include "net.h"
|
||||
#include "QF/msg.h"
|
||||
#include "pmove.h"
|
||||
#include "QF/plugin.h"
|
||||
#include "QF/qargs.h"
|
||||
#include "QF/quakefs.h"
|
||||
#include "server.h"
|
||||
|
@ -1931,6 +1932,7 @@ SV_Init (void)
|
|||
Cmd_StuffCmds_f ();
|
||||
Cbuf_Execute_Sets ();
|
||||
|
||||
PI_Init ();
|
||||
|
||||
COM_Filesystem_Init_Cvars ();
|
||||
Game_Init_Cvars ();
|
||||
|
|
Loading…
Reference in a new issue