weekend checkin

This commit is contained in:
Chris Danford
2002-06-14 22:25:22 +00:00
parent bfc327df13
commit 0bc6e1ec7e
94 changed files with 2375 additions and 1241 deletions
+33
View File
@@ -0,0 +1,33 @@
#pragma once
/*
-----------------------------------------------------------------------------
Class: CourseContentsFrame
Desc: Holds course name and banner.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "FootMeter.h"
#include "BitmapText.h"
#include "ActorFrame.h"
class Course;
const int MAX_COURSE_CONTENTS = 8;
class CourseContentsFrame : public ActorFrame
{
public:
CourseContentsFrame();
void Update( float fDeltaTime );
void SetFromCourse( Course* pCourse );
protected:
BitmapText m_textContents[MAX_COURSE_CONTENTS];
FootMeter m_Meters[MAX_COURSE_CONTENTS];
};