mirror of
https://github.com/UberGames/EF2GameSource.git
synced 2024-11-10 06:31:42 +00:00
32 lines
845 B
C++
32 lines
845 B
C++
//-----------------------------------------------------------------------------
|
|
//
|
|
// $Logfile:: /Code/DLLs/game/multiplayerArena.h $
|
|
// $Revision:: 38 $
|
|
// $Author:: Steven $
|
|
// $Date:: 7/23/02 3:55p $
|
|
//
|
|
// Copyright (C) 2002 by Ritual Entertainment, Inc.
|
|
// All rights reserved.
|
|
//
|
|
// This source may not be distributed and/or modified without
|
|
// expressly written permission by Ritual Entertainment, Inc.
|
|
//
|
|
//
|
|
// Description:
|
|
//
|
|
|
|
#ifndef __MP_SHARED_HPP__
|
|
#define __MP_SHARED_HPP__
|
|
|
|
typedef enum
|
|
{
|
|
SCOREICON1,
|
|
SCOREICON2,
|
|
SCOREICON3,
|
|
SCOREICON4,
|
|
SCOREICON5,
|
|
SCOREICON6,
|
|
MAX_SCORE_ICONS
|
|
} ScoreIconType;
|
|
|
|
#endif // __MP_SHARED_HPP__
|