scummvm/backends/dc/label.h

12 lines
198 B
C
Raw Normal View History

2002-02-02 15:44:27 +00:00
class Label
{
private:
void *texture;
int tex_u, u;
public:
void create_texture(const char *text);
void draw(float x, float y, unsigned int argb = 0xffffffff,
float scale = 1.0);
2002-02-02 15:44:27 +00:00
};