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