Files
itgmania212121/stepmania/src/Combo.h
T

42 lines
735 B
C++
Raw Normal View History

2002-02-24 01:43:11 +00:00
/*
-----------------------------------------------------------------------------
File: Combo.h
Desc: A graphic displayed in the Combo during Dancing.
2002-05-19 01:59:48 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
2002-02-24 01:43:11 +00:00
-----------------------------------------------------------------------------
*/
#ifndef _Combo_H_
#define _Combo_H_
#include "ActorFrame.h"
#include "Sprite.h"
#include "ScoreDisplayRolling.h"
class Combo : public ActorFrame
{
public:
Combo();
2002-06-14 22:25:22 +00:00
void ContinueCombo( const int iNumNotesHit );
2002-02-24 01:43:11 +00:00
void EndCombo();
int GetCurrentCombo();
int GetMaxCombo();
protected:
int m_iCurCombo;
int m_iMaxCombo;
bool m_bComboVisible;
Sprite m_sprCombo;
BitmapText m_textComboNumber;
};
#endif