Files
itgmania212121/stepmania/src/ScreenTestFonts.h
T

24 lines
492 B
C++
Raw Normal View History

#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;
2003-01-10 02:27:23 +00:00
BitmapText curfont;
Quad Vline, Hline;
void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
2003-01-10 02:27:23 +00:00
void Draw();
CString curtext;
void SetText(CString txt);
void SetFont(CString font);
};
#endif