]> icculus.org git repositories - divverent/nexuiz.git/blob - qcsrc/gamec/sv_main.c
made cl_client.c compile again - you can not assign a string to a float field without...
[divverent/nexuiz.git] / qcsrc / gamec / sv_main.c
1 /*
2 =============
3 StartFrame
4
5 Called before each frame by the server
6 =============
7 */
8 void StartFrame (void)
9 {
10         sv_maxspeed = cvar ("sv_maxspeed");
11         sv_friction = cvar ("sv_friction");
12         sv_accelerate = cvar ("sv_accelerate");
13         sv_stopspeed = cvar ("sv_stopspeed");
14
15         //BotFrame ();
16 }