Files
itgmania212121/stepmania/src/ScreenTest.h
T
Glenn Maynard 5c2f183669 sandbox is now a sandbox again; add a Test container, move
the sound test into a separate screen and add a font test
2003-01-09 04:45:49 +00:00

36 lines
780 B
C++

#ifndef ScreenTest_H
#define ScreenTest_H
/*
-----------------------------------------------------------------------------
Class: ScreenTest
Desc: Area for testing.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
Glenn Maynard
-----------------------------------------------------------------------------
*/
#include "Screen.h"
class ScreenTest : public Screen
{
public:
ScreenTest();
~ScreenTest();
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );
Screen *current;
int cur_screen;
void SetScreen(int num);
void Update(float f);
void Draw();
};
#endif