20 lines
443 B
C
20 lines
443 B
C
//=============================================================================
|
|
// Copyright (C) 2002 Radical Entertainment Ltd. All rights reserved.
|
|
//
|
|
// File: maxplayers.h
|
|
//
|
|
// Description: Blahblahblah
|
|
//
|
|
// History: 4/15/2002 + Created -- TBJ
|
|
//
|
|
//=============================================================================
|
|
|
|
#ifndef MAX_PLAYERS_H
|
|
#define MAX_PLAYERS_H
|
|
|
|
|
|
const int MAX_PLAYERS = 4;
|
|
|
|
|
|
#endif //MAX_PLAYERS_H
|