working on new course editor

This commit is contained in:
Chris Danford
2005-06-25 20:16:01 +00:00
parent e15eab5c76
commit cb8f924bb1
3 changed files with 195 additions and 116 deletions
+7 -5
View File
@@ -1,12 +1,12 @@
#ifndef ScreenCourseManager_H
#define ScreenCourseManager_H
#ifndef ScreenEditCourse_H
#define ScreenEditCourse_H
#include "ScreenOptions.h"
class ScreenCourseManager : public ScreenOptions
class ScreenEditCourse : public ScreenOptions
{
public:
ScreenCourseManager( CString sName );
ScreenEditCourse( CString sName );
void Init();
@@ -19,7 +19,9 @@ private:
virtual void GoToNextScreen();
virtual void GoToPrevScreen();
void OnChange( PlayerNumber pn );
virtual void OnChange( PlayerNumber pn );
virtual void BeginFadingOut();
};
#endif