34 lines
586 B
C++
34 lines
586 B
C++
/*
|
|||
|
|
-----------------------------------------------------------------------------
|
||
|
|
File: GhostArrow.h
|
||
|
|
|
||
|
|
Desc: Class used to represent a color arrow on the screen.
|
||
|
|
|
||
|
|
Copyright (c) 2001 Ben Norstrom. All rights reserved.
|
||
|
|
-----------------------------------------------------------------------------
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
class GhostArrow;
|
||
|
|
|
||
|
|
#ifndef _GhostArrow_H_
|
||
|
|
#define _GhostArrow_H_
|
||
|
|
|
||
|
|
|
||
|
|
#include "Sprite.h"
|
||
|
|
#include "Steps.h"
|
||
|
|
|
||
|
|
|
||
|
|
class GhostArrow : public Sprite
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
GhostArrow();
|
||
|
|
|
||
|
|
void SetBeat( const float fSongBeat );
|
||
|
|
void Step( StepScore score );
|
||
|
|
|
||
|
|
float m_fVisibilityCountdown;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|