Files
itgmania212121/stepmania/src/GhostArrow.h
T

34 lines
586 B
C++
Raw Normal View History

2001-12-01 23:46:09 +00:00
/*
-----------------------------------------------------------------------------
File: GhostArrow.h
Desc: Class used to represent a color arrow on the screen.
Copyright (c) 2001 Ben Norstrom. All rights reserved.
-----------------------------------------------------------------------------
*/
class GhostArrow;
#ifndef _GhostArrow_H_
#define _GhostArrow_H_
#include "Sprite.h"
#include "Steps.h"
class GhostArrow : public Sprite
{
public:
GhostArrow();
void SetBeat( const float fSongBeat );
void Step( StepScore score );
float m_fVisibilityCountdown;
};
#endif