mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-02-24 13:01:10 +00:00
14 lines
246 B
C
14 lines
246 B
C
// Copyright (C) 1999-2000 Id Software, Inc.
|
|
//
|
|
|
|
#ifndef G_TEAM_H_
|
|
#define G_TEAM_H_
|
|
|
|
// Prototypes
|
|
const char* TeamName(int32_t team);
|
|
const char* OtherTeamName(int32_t team);
|
|
const char* TeamColorString(int32_t team);
|
|
|
|
#endif /* G_TEAM_H_ */
|
|
|
|
|