no message

This commit is contained in:
Chris Danford
2002-05-27 08:23:27 +00:00
parent 8549236385
commit b723efdaba
79 changed files with 1728 additions and 1620 deletions
+34
View File
@@ -0,0 +1,34 @@
#pragma once
/*
-----------------------------------------------------------------------------
Class: MenuTimer
Desc: A timer in the upper right corner of the menu that ticks down.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Sprite.h"
#include "Song.h"
#include "ActorFrame.h"
#include "BitmapText.h"
#include "Quad.h"
class MenuTimer : public ActorFrame
{
public:
MenuTimer();
virtual void Update( float fDeltaTime );
void StopTimer();
void StallTimer();
protected:
float m_fSecondsLeft;
BitmapText m_textDigit1;
BitmapText m_textDigit2;
};