Files
itgmania212121/stepmania/src/GhostArrow.h
T
2002-06-24 22:04:31 +00:00

31 lines
629 B
C++

#pragma once
/*
-----------------------------------------------------------------------------
Class: GhostArrow
Desc: The trail a note leaves when it is destroyed.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Ben Nordstrom
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Sprite.h"
#include "GameConstantsAndTypes.h"
class GhostArrow : public Sprite
{
public:
GhostArrow();
virtual void Update( float fDeltaTime );
void SetBeat( const float fSongBeat );
void Step( TapNoteScore score );
float m_fVisibilityCountdown;
};