Files
itgmania212121/stepmania/src/GrayArrow.h
T
2002-04-16 17:31:00 +00:00

31 lines
564 B
C++

/*
-----------------------------------------------------------------------------
Class: GrayArrow
Desc: A gray arrow that "receives" ColorArrows.
Copyright (c) 2001-2002 by the persons listed below. All rights reserved.
Ben Nordstrom
Chris Danford
-----------------------------------------------------------------------------
*/
#ifndef _GrayArrow_H_
#define _GrayArrow_H_
#include "Sprite.h"
#include "NoteMetadata.h"
class GrayArrow : public Sprite
{
public:
GrayArrow();
virtual void SetBeat( const float fSongBeat );
void Step();
};
#endif