35 lines
786 B
C++
35 lines
786 B
C++
#ifndef ScoreDisplayBattle_H
|
|
#define ScoreDisplayBattle_H
|
|
/*
|
|
-----------------------------------------------------------------------------
|
|
Class: ScoreDisplayBattle
|
|
|
|
Desc: Shows point score during gameplay and used in some menus.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Chris Danford
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "ScoreDisplay.h"
|
|
#include "GameConstantsAndTypes.h"
|
|
#include "Sprite.h"
|
|
|
|
|
|
class ScoreDisplayBattle : public ScoreDisplay
|
|
{
|
|
public:
|
|
ScoreDisplayBattle();
|
|
virtual void Init( PlayerNumber pn );
|
|
|
|
virtual void Update( float fDelta );
|
|
|
|
protected:
|
|
Sprite m_sprFrame;
|
|
Sprite m_ItemIcon[NUM_INVENTORY_SLOTS];
|
|
|
|
CString m_iLastSeenInventory[NUM_INVENTORY_SLOTS];
|
|
};
|
|
|
|
#endif
|