Files
itgmania212121/stepmania/src/ActiveAttackList.h
T
2004-03-17 06:01:17 +00:00

33 lines
660 B
C++

#ifndef _ActiveAttackList_H_
#define _ActiveAttackList_H_
/*
-----------------------------------------------------------------------------
File: ActiveAttackList.h
Desc: A graphic displayed in the ActiveAttackList during Dancing.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "BitmapText.h"
#include "PlayerNumber.h"
class ActiveAttackList : public BitmapText
{
public:
ActiveAttackList();
void Init( PlayerNumber pn );
virtual void Update( float fDelta );
protected:
PlayerNumber m_PlayerNumber;
};
#endif