mirror of
https://github.com/shawns-valve/halflife.git
synced 2024-11-22 04:21:30 +00:00
30 lines
558 B
C
30 lines
558 B
C
|
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================
|
|||
|
#ifndef GLOBALCONSTS_H
|
|||
|
#define GLOBALCONSTS_H
|
|||
|
#ifdef _WIN32
|
|||
|
#pragma once
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
|
|||
|
enum
|
|||
|
{
|
|||
|
MAX_PLAYERS = 64,
|
|||
|
MAX_TEAMS = 64,
|
|||
|
MAX_TEAM_NAME = 16,
|
|||
|
};
|
|||
|
|
|||
|
#define MAX_SCORES 10
|
|||
|
#define MAX_SCOREBOARD_TEAMS 5
|
|||
|
|
|||
|
#define NUM_ROWS (MAX_PLAYERS + (MAX_SCOREBOARD_TEAMS * 2))
|
|||
|
|
|||
|
#define MAX_SERVERNAME_LENGTH 64
|
|||
|
#define MAX_TEAMNAME_SIZE 32
|
|||
|
|
|||
|
#endif // GLOBALCONSTS_H
|