Files
itgmania212121/stepmania/src/DifficultyIcon.h
T
2002-11-16 08:07:38 +00:00

27 lines
604 B
C++

#ifndef DIFFICULTYICON_H
#define DIFFICULTYICON_H
/*
-----------------------------------------------------------------------------
Class: DifficultyIcon
Desc: Graphical representation of the difficulty class.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Sprite.h"
#include "GameConstantsAndTypes.h"
struct Notes;
class DifficultyIcon : public Sprite
{
public:
bool Load( CString sFilePath );
void SetFromNotes( PlayerNumber pn, Notes* pNotes );
};
#endif