Files
itgmania212121/stepmania/src/OptionIconRow.h
T

37 lines
728 B
C++
Raw Normal View History

2002-09-03 06:33:08 +00:00
#ifndef OptionIconRow_H
#define OptionIconRow_H
/*
-----------------------------------------------------------------------------
Class: OptionIconRow
Desc: Shows PlayerOptions and SongOptions in icon form.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ActorFrame.h"
#include "OptionIcon.h"
struct PlayerOptions;
const unsigned NUM_OPTION_COLS = 8;
2002-09-03 06:33:08 +00:00
class OptionIconRow : public ActorFrame
{
public:
OptionIconRow();
void Refresh( PlayerNumber pn );
virtual void DrawPrimitives();
protected:
PlayerNumber m_PlayerNumber;
OptionIcon m_OptionIcon[NUM_OPTION_COLS];
};
2002-11-16 09:12:55 +00:00
#endif