Files
itgmania212121/stepmania/src/DifficultyIcon.h
T
2003-08-03 00:13:55 +00:00

28 lines
595 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 "PlayerNumber.h"
class Steps;
class DifficultyIcon : public Sprite
{
public:
bool Load( CString sFilePath );
void SetFromNotes( PlayerNumber pn, Steps* pNotes );
};
#endif