Files
itgmania212121/stepmania/src/GhostArrow.h
T

36 lines
639 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"
2002-04-16 17:31:00 +00:00
#include "NoteMetadata.h"
2001-12-01 23:46:09 +00:00
class GhostArrow : public Sprite
{
public:
GhostArrow();
2002-02-24 01:43:11 +00:00
virtual void Update( float fDeltaTime );
2001-12-01 23:46:09 +00:00
void SetBeat( const float fSongBeat );
void Step( TapNoteScore score );
2001-12-01 23:46:09 +00:00
float m_fVisibilityCountdown;
};
#endif