Files
itgmania212121/stepmania/src/AttackDisplay.h
T

37 lines
717 B
C++
Raw Normal View History

2003-11-26 08:25:45 +00:00
#ifndef AttackDisplay_H
#define AttackDisplay_H
/*
-----------------------------------------------------------------------------
Class: AttackDisplay
Desc:
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ActorFrame.h"
#include "Sprite.h"
#include "PlayerNumber.h"
#include "GameConstantsAndTypes.h" // for TapNoteScore
class AttackDisplay : public ActorFrame
{
public:
AttackDisplay();
2003-12-28 21:48:43 +00:00
void Init( PlayerNumber pn );
void SetAttack( const CString &mod );
2003-11-26 08:25:45 +00:00
virtual void Update( float fDelta );
protected:
PlayerNumber m_PlayerNumber;
2003-12-28 22:48:23 +00:00
Sprite m_sprAttack;
2003-11-26 08:25:45 +00:00
};
#endif