Files
itgmania212121/stepmania/src/OptionIconRow.h
T
2002-11-16 09:12:55 +00:00

37 lines
728 B
C++

#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;
class OptionIconRow : public ActorFrame
{
public:
OptionIconRow();
void Refresh( PlayerNumber pn );
virtual void DrawPrimitives();
protected:
PlayerNumber m_PlayerNumber;
OptionIcon m_OptionIcon[NUM_OPTION_COLS];
};
#endif