Files
itgmania212121/stepmania/src/ScreenSandbox.cpp
T

46 lines
1.2 KiB
C++
Raw Normal View History

2003-02-16 04:01:45 +00:00
#include "global.h"
2002-05-20 08:59:37 +00:00
/*
-----------------------------------------------------------------------------
File: ScreenSandbox.h
Desc: Area for testing. Throw whatever you're working on in here. If you
don't want stuff in here to be wiped out by the next guy who works on something,
make a separate screen and add a hook into ScreenTest; this one's just a
scratchpad.
2002-05-20 08:59:37 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
2004-01-11 03:06:47 +00:00
(there is no actual code here)
2002-05-20 08:59:37 +00:00
-----------------------------------------------------------------------------
*/
#include "ScreenSandbox.h"
#include "GameConstantsAndTypes.h"
#include "ThemeManager.h"
2003-05-11 07:23:47 +00:00
#include "RageDisplay.h"
2003-08-20 09:59:52 +00:00
#include "RageLog.h"
2002-05-20 08:59:37 +00:00
2003-09-27 22:30:51 +00:00
ScreenSandbox::ScreenSandbox( CString sClassName ) : Screen( sClassName )
{
2002-12-18 06:54:28 +00:00
}
void ScreenSandbox::HandleScreenMessage( const ScreenMessage SM )
2002-12-18 06:54:28 +00:00
{
2004-01-11 03:06:47 +00:00
Screen::HandleScreenMessage( SM );
2002-05-20 08:59:37 +00:00
}
void ScreenSandbox::Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI )
{
Screen::Input( DeviceI, type, GameI, MenuI, StyleI );
2002-05-20 08:59:37 +00:00
}
void ScreenSandbox::Update( float fDeltaTime )
2002-05-20 08:59:37 +00:00
{
Screen::Update(fDeltaTime);
2002-11-16 20:21:00 +00:00
}
2003-05-11 07:23:47 +00:00
void ScreenSandbox::DrawPrimitives()
{
Screen::DrawPrimitives();
2003-07-03 18:13:13 +00:00
}