2002-07-23 01:41:40 +00:00
|
|
|
#pragma once
|
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"
|
2002-02-24 01:43:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Combo : public ActorFrame
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Combo();
|
|
|
|
|
|
2002-06-24 22:04:31 +00:00
|
|
|
void ContinueCombo();
|
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;
|
|
|
|
|
};
|