Files
itgmania212121/stepmania/src/ScoreDisplay.h
T

29 lines
695 B
C++
Raw Normal View History

#ifndef SCOREDISPLAY_H
#define SCOREDISPLAY_H
2002-07-23 01:41:40 +00:00
/*
-----------------------------------------------------------------------------
Class: ScoreDisplay
Desc: A graphic displayed in the ScoreDisplay during Dancing.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "PlayerNumber.h"
2002-07-23 01:41:40 +00:00
#include "ActorFrame.h"
2003-02-25 00:33:42 +00:00
class ScoreDisplay : public ActorFrame
2002-07-23 01:41:40 +00:00
{
public:
2002-07-28 20:28:37 +00:00
virtual void Init( PlayerNumber pn ) { m_PlayerNumber = pn; };
2002-07-23 01:41:40 +00:00
2003-06-18 20:08:39 +00:00
virtual void SetScore( int iNewScore ) {};
2002-07-28 20:28:37 +00:00
2002-07-23 01:41:40 +00:00
protected:
2002-07-28 20:28:37 +00:00
PlayerNumber m_PlayerNumber; // needed to look up statistics in GAMESTATE
2002-07-23 01:41:40 +00:00
};
#endif