add ProTimingDisplay

This commit is contained in:
Glenn Maynard
2003-08-01 00:54:29 +00:00
parent e853582baa
commit 658e925c4e
2 changed files with 80 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef PRO_TIMING_DISPLAY_H
#define PRO_TIMING_DISPLAY_H
#include "ActorFrame.h"
#include "BitmapText.h"
#include "GameConstantsAndTypes.h"
class ProTimingDisplay: public ActorFrame
{
BitmapText m_Judgment;
public:
ProTimingDisplay();
void SetJudgment( int ms, TapNoteScore score );
void Reset();
};
#endif