2002-11-16 08:07:38 +00:00
|
|
|
#ifndef GHOSTARROW_H
|
|
|
|
|
#define GHOSTARROW_H
|
2001-12-01 23:46:09 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
2002-06-24 22:04:31 +00:00
|
|
|
Class: GhostArrow
|
2001-12-01 23:46:09 +00:00
|
|
|
|
2002-06-24 22:04:31 +00:00
|
|
|
Desc: The trail a note leaves when it is destroyed.
|
2001-12-01 23:46:09 +00:00
|
|
|
|
2002-06-24 22:04:31 +00:00
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
|
|
|
Ben Nordstrom
|
|
|
|
|
Chris Danford
|
2001-12-01 23:46:09 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "Sprite.h"
|
2002-06-24 22:04:31 +00:00
|
|
|
#include "GameConstantsAndTypes.h"
|
2001-12-01 23:46:09 +00:00
|
|
|
|
|
|
|
|
class GhostArrow : public Sprite
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
GhostArrow();
|
|
|
|
|
|
2002-02-24 01:43:11 +00:00
|
|
|
virtual void Update( float fDeltaTime );
|
|
|
|
|
|
2002-03-19 07:09:49 +00:00
|
|
|
void Step( TapNoteScore score );
|
2002-08-27 23:31:41 +00:00
|
|
|
|
|
|
|
|
protected:
|
2001-12-01 23:46:09 +00:00
|
|
|
};
|
2002-06-23 11:43:53 +00:00
|
|
|
|
2002-11-16 08:07:38 +00:00
|
|
|
|
|
|
|
|
#endif
|