Files
itgmania212121/stepmania/src/ScreenSandbox.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

33 lines
769 B
C++

#ifndef SCREENSANDBOX_H
#define SCREENSANDBOX_H
/*
-----------------------------------------------------------------------------
Class: ScreenSandbox
Desc: Area for testing.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Screen.h"
#include "Sample3dObject.h"
#include "Quad.h"
class ScreenSandbox : public Screen
{
public:
ScreenSandbox();
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );
void Update(float f);
Sample3dObject obj;
Quad m_quad;
};
#endif