2001-12-01 23:46:09 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
2002-06-23 11:43:53 +00:00
|
|
|
File: GhostArrow.h
|
2001-12-01 23:46:09 +00:00
|
|
|
|
2002-06-23 11:43:53 +00:00
|
|
|
Desc: Class used to represent a color arrow on the screen.
|
2001-12-01 23:46:09 +00:00
|
|
|
|
2002-06-23 11:43:53 +00:00
|
|
|
Copyright (c) 2001 Ben Norstrom. All rights reserved.
|
2001-12-01 23:46:09 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2002-06-23 11:43:53 +00:00
|
|
|
class GhostArrow;
|
|
|
|
|
|
|
|
|
|
#ifndef _GhostArrow_H_
|
|
|
|
|
#define _GhostArrow_H_
|
|
|
|
|
|
|
|
|
|
|
2001-12-01 23:46:09 +00:00
|
|
|
#include "Sprite.h"
|
2002-06-23 11:43:53 +00:00
|
|
|
#include "Notes.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 );
|
|
|
|
|
|
2001-12-01 23:46:09 +00:00
|
|
|
void SetBeat( const float fSongBeat );
|
2002-03-19 07:09:49 +00:00
|
|
|
void Step( TapNoteScore score );
|
2001-12-01 23:46:09 +00:00
|
|
|
|
|
|
|
|
float m_fVisibilityCountdown;
|
|
|
|
|
};
|
2002-06-23 11:43:53 +00:00
|
|
|
|
|
|
|
|
#endif
|