Files
itgmania212121/stepmania/src/GhostArrowBright.h
T
2002-05-19 01:59:48 +00:00

34 lines
625 B
C++

/*
-----------------------------------------------------------------------------
File: GhostArrowBright.h
Desc: Class used to represent a color arrow on the screen.
Copyright (c) 2001 Ben Norstrom. All rights reserved.
-----------------------------------------------------------------------------
*/
class GhostArrowBright;
#ifndef _GhostArrowBright_H_
#define _GhostArrowBright_H_
#include "Sprite.h"
#include "Notes.h"
class GhostArrowBright : public Sprite
{
public:
GhostArrowBright();
void SetBeat( const float fSongBeat );
void Step( TapNoteScore score );
float m_fVisibilityCountdown;
};
#endif