34 lines
635 B
C++
34 lines
635 B
C++
#pragma once
|
|
/*
|
|
-----------------------------------------------------------------------------
|
|
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 "PrefsManager.h"
|
|
#include "Grade.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;
|
|
};
|