Some minor fixes regarding the entry API. Fixed explosion effects from not animating/looping properly.
23 lines
330 B
C
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();
|
|
}
|