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"
|
2002-11-19 23:57:10 +00:00
|
|
|
#include "Sample3dObject.h"
|
2003-01-09 04:45:49 +00:00
|
|
|
#include "Quad.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-12-18 06:54:28 +00:00
|
|
|
void Update(float f);
|
2002-11-19 23:57:10 +00:00
|
|
|
Sample3dObject obj;
|
2003-01-09 04:45:49 +00:00
|
|
|
Quad m_quad;
|
2002-05-20 08:59:37 +00:00
|
|
|
};
|
|
|
|
|
|
2002-11-16 08:07:38 +00:00
|
|
|
|
|
|
|
|
#endif
|