scummvm/backends/dc/label.h
Max Horn ce46866403 Initial revision
svn-id: r4785
2002-08-21 16:07:07 +00:00

12 lines
198 B
C++

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);
};