mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
ce46866403
svn-id: r4785
12 lines
198 B
C++
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);
|
|
};
|