blob: d4a407307d067b375366ceaecc0341d243b37b9c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | 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);
};
 |