Files
itgmania212121/stepmania/src/GrayArrow.h
T
Chris Danford fc2108e85d fixed EditMenu "Create from Autogen" weirdness
cleaned up some unnecessary header dependencies
2003-02-22 01:58:56 +00:00

28 lines
531 B
C++

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