nuclide/Source/server/valve/server.c
Marco Hladik d8926097fa Added custom GLSL updates, that add monochrome rendering (for better 3D Anaglyph support)
Some minor fixes regarding the entry API.
Fixed explosion effects from not animating/looping properly.
2019-02-20 14:30:16 +01:00

23 lines
330 B
C

/***
*
* Copyright (c) 2016-2019 Marco 'eukara' Hladik. All rights reserved.
*
* See the file LICENSE attached with the sources for usage details.
*
****/
void Game_StartFrame(void)
{
}
float Game_ConsoleCmd(string cmd)
{
return FALSE;
}
void Game_Worldspawn(void)
{
precache_model("models/player.mdl");
Weapons_Init();
}