22ef6c358b
default mappings for menu buttons items in battle now have a duration fix VC6 compile errors
34 lines
686 B
C++
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
|