aboutsummaryrefslogtreecommitdiff
path: root/dc/label.h
blob: bf43212499d327d67d77ba616d78bc3cbe402cc4 (plain)
1
2
3
4
5
6
7
8
9
10
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);
};