Files
itgmania212121/stepmania/src/OptionIcon.h
T
Chris Danford 22ef6c358b moved PlayerNumber into a separate header to reduce dependences on GameConstantsAndTypes.h
default mappings for menu buttons
items in battle now have a duration
fix VC6 compile errors
2003-02-26 00:20:00 +00:00

34 lines
686 B
C++

#ifndef OptionIcon_H
#define OptionIcon_H
/*
-----------------------------------------------------------------------------
Class: OptionIcon
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 "Sprite.h"
#include "BitmapText.h"
#include "PlayerNumber.h"
class OptionIcon : public ActorFrame
{
public:
OptionIcon();
void Load( PlayerNumber pn, CString sText, bool bHeader = false );
void DrawPrimitives();
protected:
BitmapText m_text;
Sprite m_spr;
};
#endif