Files
itgmania212121/stepmania/src/GrayArrow.h
T

31 lines
564 B
C++
Raw Normal View History

2001-12-01 23:46:09 +00:00
/*
-----------------------------------------------------------------------------
2002-02-28 19:40:40 +00:00
Class: GrayArrow
2001-12-01 23:46:09 +00:00
2002-02-28 19:40:40 +00:00
Desc: A gray arrow that "receives" ColorArrows.
2001-12-01 23:46:09 +00:00
2002-04-16 17:31:00 +00:00
Copyright (c) 2001-2002 by the persons listed below. All rights reserved.
2002-02-28 19:40:40 +00:00
Ben Nordstrom
Chris Danford
2001-12-01 23:46:09 +00:00
-----------------------------------------------------------------------------
*/
#ifndef _GrayArrow_H_
#define _GrayArrow_H_
#include "Sprite.h"
2002-04-16 17:31:00 +00:00
#include "NoteMetadata.h"
2001-12-01 23:46:09 +00:00
class GrayArrow : public Sprite
{
public:
GrayArrow();
virtual void SetBeat( const float fSongBeat );
2002-02-24 01:43:11 +00:00
void Step();
2001-12-01 23:46:09 +00:00
};
#endif