Files
itgmania212121/stepmania/src/ArrowBackdrop.h
T
2003-04-14 22:21:09 +00:00

18 lines
394 B
C++

#ifndef ARROW_BACKDROP_H
#define ARROW_BACKDROP_H
#include "BGAnimation.h"
#include "PlayerNumber.h"
class ArrowBackdrop: public BGAnimation
{
PlayerNumber m_PlayerNumber;
public:
virtual void BeginDraw(); // pushes transform onto world matrix stack
virtual void EndDraw(); // pops transform from world matrix stack
void SetPlayer( PlayerNumber pn ) { m_PlayerNumber = pn; }
};
#endif