Files
itgmania212121/stepmania/src/ScoreDisplayBattle.h
T

35 lines
786 B
C++
Raw Normal View History

2003-02-25 00:33:42 +00:00
#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"
2003-10-19 20:01:20 +00:00
#include "Sprite.h"
2003-02-25 00:33:42 +00:00
class ScoreDisplayBattle : public ScoreDisplay
{
public:
ScoreDisplayBattle();
virtual void Init( PlayerNumber pn );
2003-02-25 00:33:42 +00:00
virtual void Update( float fDelta );
protected:
2003-05-05 06:48:20 +00:00
Sprite m_sprFrame;
Sprite m_ItemIcon[NUM_INVENTORY_SLOTS];
2003-02-25 02:51:04 +00:00
CString m_iLastSeenInventory[NUM_INVENTORY_SLOTS];
2003-02-25 00:33:42 +00:00
};
#endif