Files
itgmania212121/stepmania/src/GhostArrowRow.h
T
2002-05-27 08:23:27 +00:00

44 lines
1.0 KiB
C++

#pragma once
/*
-----------------------------------------------------------------------------
File: GhostArrowRow.h
Desc: A row of GhostArrow Actors
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ActorFrame.h"
#include "GhostArrow.h"
#include "GhostArrowBright.h"
#include "HoldGhostArrow.h"
#include "GameConstantsAndTypes.h"
#include "StyleDef.h"
class GhostArrowRow : public ActorFrame
{
public:
GhostArrowRow();
void Update( float fDeltaTime, float fSongBeat );
virtual void DrawPrimitives();
void Load( PlayerNumber pn, StyleDef* pStyleDef, PlayerOptions po );
void TapNote( int iCol, TapNoteScore score, bool bBright );
void HoldNote( int iCol );
protected:
int m_iNumCols;
float m_fSongBeat;
PlayerOptions m_PlayerOptions;
GhostArrow m_GhostArrowRow[MAX_NOTE_TRACKS];
GhostArrowBright m_GhostArrowRowBright[MAX_NOTE_TRACKS];
HoldGhostArrow m_HoldGhostArrowRow[MAX_NOTE_TRACKS];
};