Files
itgmania212121/stepmania/src/SmallGradeDisplay.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

37 lines
686 B
C++

#ifndef SMALLGRADEDISPLAY_H
#define SMALLGRADEDISPLAY_H
/*
-----------------------------------------------------------------------------
Class: SmallGradeDisplay
Desc: The grade shows on ScreenEvaluation
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Sprite.h"
#include "Grade.h"
#include "PlayerNumber.h"
class SmallGradeDisplay : public Sprite
{
public:
SmallGradeDisplay();
virtual void Update( float fDeltaTime );
virtual void DrawPrimitives();
void SetGrade( PlayerNumber pn, Grade g );
protected:
Grade m_Grade;
};
#endif