2002-11-16 08:07:38 +00:00
|
|
|
#ifndef SCREENSANDBOX_H
|
|
|
|
|
#define SCREENSANDBOX_H
|
2002-05-20 08:59:37 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
2002-07-27 19:29:51 +00:00
|
|
|
Class: ScreenSandbox
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
Desc: Area for testing.
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
2002-07-27 19:29:51 +00:00
|
|
|
Chris Danford
|
2002-05-20 08:59:37 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "Screen.h"
|
|
|
|
|
#include "Sprite.h"
|
|
|
|
|
#include "BitmapText.h"
|
|
|
|
|
#include "Quad.h"
|
|
|
|
|
#include "TransitionStarWipe.h"
|
|
|
|
|
#include "MenuElements.h"
|
2002-07-23 01:41:40 +00:00
|
|
|
#include "TipDisplay.h"
|
2002-07-27 19:29:51 +00:00
|
|
|
#include "RageSoundStream.h"
|
2002-11-19 23:57:10 +00:00
|
|
|
#include "Sample3dObject.h"
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
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 );
|
|
|
|
|
|
2002-11-26 01:17:43 +00:00
|
|
|
Quad m_quad;
|
2002-11-11 04:53:31 +00:00
|
|
|
Sprite m_sprite;
|
2002-11-19 23:57:10 +00:00
|
|
|
Sample3dObject obj;
|
2002-05-20 08:59:37 +00:00
|
|
|
};
|
|
|
|
|
|
2002-11-16 08:07:38 +00:00
|
|
|
|
|
|
|
|
#endif
|