2019-01-21 02:00:14 +00:00
|
|
|
/***
|
|
|
|
*
|
|
|
|
* 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)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2019-02-28 07:18:01 +00:00
|
|
|
|
|
|
|
void info_player_team1(void)
|
|
|
|
{
|
|
|
|
self.classname = "info_player_deathmatch";
|
|
|
|
}
|
|
|
|
|
|
|
|
void info_player_team2(void)
|
|
|
|
{
|
|
|
|
self.classname = "info_player_deathmatch";
|
|
|
|
}
|