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

31 lines
626 B
C++

#ifndef GHOSTARROWBRIGHT_H
#define GHOSTARROWBRIGHT_H
/*
-----------------------------------------------------------------------------
Class: GhostArrowBright
Desc: Ghost arrow used when over 100 combo.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Ben Nordstrom
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Sprite.h"
#include "GameConstantsAndTypes.h"
class GhostArrowBright : public Sprite
{
public:
GhostArrowBright();
virtual void Update( float fDeltaTime );
void Step( TapNoteScore score );
protected:
};
#endif