Files
itgmania212121/stepmania/src/Combo.h
T

38 lines
757 B
C++
Raw Normal View History

#ifndef COMBO_H
#define COMBO_H
2002-02-24 01:43:11 +00:00
/*
-----------------------------------------------------------------------------
2002-07-23 01:41:40 +00:00
Class: Combo
2002-02-24 01:43:11 +00:00
2002-07-23 01:41:40 +00:00
Desc: Text that displays the size of the current combo.
2002-02-24 01:43:11 +00:00
2002-05-19 01:59:48 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
2002-07-23 01:41:40 +00:00
Chris Danford
2002-02-24 01:43:11 +00:00
-----------------------------------------------------------------------------
*/
#include "ActorFrame.h"
#include "Sprite.h"
2002-07-23 01:41:40 +00:00
#include "BitmapText.h"
#include "PlayerNumber.h"
#include "GameConstantsAndTypes.h" // for TapNoteScore
2002-02-24 01:43:11 +00:00
class Combo : public ActorFrame
{
public:
Combo();
2003-02-25 00:33:42 +00:00
void Init( PlayerNumber pn ) { m_PlayerNumber = pn; }
2003-03-16 20:55:45 +00:00
void SetCombo( int iCombo );
2002-02-24 01:43:11 +00:00
protected:
2003-02-25 00:33:42 +00:00
PlayerNumber m_PlayerNumber;
2002-02-24 01:43:11 +00:00
Sprite m_sprCombo;
BitmapText m_textComboNumber;
};
#endif