sandbox is now a sandbox again; add a Test container, move

the sound test into a separate screen and add a font test
This commit is contained in:
Glenn Maynard
2003-01-09 04:45:49 +00:00
parent 3f3032e89d
commit 5c2f183669
12 changed files with 452 additions and 197 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef SCREEN_TEST_FONTS_H
#define SCREEN_TEST_FONTS_H
#include "Screen.h"
#include "BitmapText.h"
#include "Quad.h"
class ScreenTestFonts: public Screen
{
public:
ScreenTestFonts();
BitmapText txt;
Quad Vline, Hline;
void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
};
#endif