Files
itgmania212121/stepmania/src/GhostArrow.h
T
2002-11-16 08:07:38 +00:00

33 lines
605 B
C++

#ifndef GHOSTARROW_H
#define GHOSTARROW_H
/*
-----------------------------------------------------------------------------
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 Step( TapNoteScore score );
protected:
};
#endif