2002-11-16 08:07:38 +00:00
|
|
|
#ifndef DIFFICULTYICON_H
|
|
|
|
|
#define DIFFICULTYICON_H
|
2002-01-16 10:01:32 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
2002-06-14 22:25:22 +00:00
|
|
|
Class: DifficultyIcon
|
2002-01-16 10:01:32 +00:00
|
|
|
|
2002-10-06 16:56:58 +00:00
|
|
|
Desc: Graphical representation of the difficulty class.
|
2002-01-16 10:01:32 +00:00
|
|
|
|
2002-05-19 01:59:48 +00:00
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
2002-06-14 22:25:22 +00:00
|
|
|
Chris Danford
|
2002-01-16 10:01:32 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "Sprite.h"
|
2003-02-26 00:20:00 +00:00
|
|
|
#include "PlayerNumber.h"
|
2003-08-03 00:13:55 +00:00
|
|
|
class Steps;
|
2002-01-16 10:01:32 +00:00
|
|
|
|
2003-02-26 00:20:00 +00:00
|
|
|
|
2002-01-16 10:01:32 +00:00
|
|
|
class DifficultyIcon : public Sprite
|
|
|
|
|
{
|
|
|
|
|
public:
|
2002-10-06 16:56:58 +00:00
|
|
|
bool Load( CString sFilePath );
|
2002-01-16 10:01:32 +00:00
|
|
|
|
2003-08-03 00:13:55 +00:00
|
|
|
void SetFromNotes( PlayerNumber pn, Steps* pNotes );
|
2002-01-16 10:01:32 +00:00
|
|
|
};
|
2002-11-16 08:07:38 +00:00
|
|
|
|
|
|
|
|
#endif
|