27 lines
388 B
C
27 lines
388 B
C
/***
|
|
*
|
|
* Copyright (c) 2016-2019 Marco 'eukara' Hladik. All rights reserved.
|
|
*
|
|
* See the file LICENSE attached with the sources for usage details.
|
|
*
|
|
****/
|
|
|
|
void info_player_start(void)
|
|
{
|
|
|
|
}
|
|
|
|
void info_player_deathmatch(void)
|
|
{
|
|
|
|
}
|
|
|
|
void info_player_team1(void)
|
|
{
|
|
self.classname = "info_player_deathmatch";
|
|
}
|
|
|
|
void info_player_team2(void)
|
|
{
|
|
self.classname = "info_player_deathmatch";
|
|
}
|