2003-02-22 01:58:56 +00:00
|
|
|
#ifndef _GrayArrow_H_
|
|
|
|
|
#define _GrayArrow_H_
|
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-04-28 20:42:32 +00:00
|
|
|
Desc: A gray arrow that "receives" ColorNotes.
|
2001-12-01 23:46:09 +00:00
|
|
|
|
2002-05-19 01:59:48 +00:00
|
|
|
Copyright (c) 2001-2002 by the person(s) 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
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "Sprite.h"
|
|
|
|
|
|
|
|
|
|
class GrayArrow : public Sprite
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
GrayArrow();
|
|
|
|
|
|
2002-07-28 20:28:37 +00:00
|
|
|
virtual void Update( float fDeltaTime );
|
2002-02-24 01:43:11 +00:00
|
|
|
void Step();
|
2001-12-01 23:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|