2018-12-27 22:53:24 +00:00
|
|
|
/***
|
|
|
|
*
|
2019-01-16 16:43:50 +00:00
|
|
|
* Copyright (c) 2016-2019 Marco 'eukara' Hladik. All rights reserved.
|
|
|
|
*
|
|
|
|
* See the file LICENSE attached with the sources for usage details.
|
2018-12-27 22:53:24 +00:00
|
|
|
*
|
|
|
|
****/
|
|
|
|
|
2019-01-21 02:00:14 +00:00
|
|
|
void Game_StartFrame(void)
|
2019-01-19 04:50:25 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2019-01-16 16:43:50 +00:00
|
|
|
|
2019-01-21 02:00:14 +00:00
|
|
|
float Game_ConsoleCmd(string cmd)
|
2019-01-19 04:50:25 +00:00
|
|
|
{
|
2019-01-21 02:00:14 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2019-01-19 04:50:25 +00:00
|
|
|
|
2019-01-21 02:00:14 +00:00
|
|
|
void Game_Worldspawn(void)
|
|
|
|
{
|
2019-01-29 02:40:14 +00:00
|
|
|
precache_model("models/player.mdl");
|
|
|
|
Weapons_Init();
|
2019-01-19 04:50:25 +00:00
|
|
|
}
|