Files
itgmania212121/stepmania/src/GrayArrowRow.h
T

42 lines
879 B
C++
Raw Normal View History

#ifndef GRAYARROWROW_H
#define GRAYARROWROW_H
2002-04-16 17:31:00 +00:00
/*
-----------------------------------------------------------------------------
Class: GrayArrowRow
Desc: A row of GrayArrow objects
2002-05-19 01:59:48 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
2002-04-16 17:31:00 +00:00
Chris Danford
-----------------------------------------------------------------------------
*/
#include "GrayArrow.h"
#include "ActorFrame.h"
#include "StyleDef.h"
2002-05-01 19:14:55 +00:00
#include "GameConstantsAndTypes.h"
2002-04-16 17:31:00 +00:00
class GrayArrowRow : public ActorFrame
{
public:
GrayArrowRow();
2003-11-27 23:45:38 +00:00
void Load( PlayerNumber pn, CString NoteSkin, float fYReverseOffset );
2002-07-28 20:28:37 +00:00
virtual void Update( float fDeltaTime );
virtual void DrawPrimitives();
2002-04-16 17:31:00 +00:00
void Step( int iCol );
void UpdateBars( int iCol );
2002-04-16 17:31:00 +00:00
protected:
int m_iNumCols;
2002-07-28 20:28:37 +00:00
PlayerNumber m_PlayerNumber;
float m_fYReverseOffsetPixels;
2002-04-16 17:31:00 +00:00
GrayArrow m_GrayArrow[MAX_NOTE_TRACKS];
};
#endif