convert this screen to Menu, to get rid of old transitions

This commit is contained in:
Glenn Maynard
2003-03-22 20:28:03 +00:00
parent 6b6c077f44
commit 5ffdec22e5
7 changed files with 25 additions and 18 deletions
+4 -5
View File
@@ -14,10 +14,8 @@
#include "Screen.h"
#include "TransitionFade.h"
#include "TransitionFadeWipe.h"
#include "RandomSample.h"
#include "BGAnimation.h"
#include "MenuElements.h"
class ScreenStyleSplash : public Screen
@@ -27,13 +25,14 @@ public:
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );
virtual void DrawPrimitives();
protected:
void MenuStart( PlayerNumber pn );
void MenuBack( PlayerNumber pn );
MenuElements m_Menu;
BGAnimation m_Background;
TransitionFade m_Wipe;
TransitionFadeWipe m_FadeWipe;
};
#endif