10 #include <allegro5/allegro5.h> 11 #include <allegro5/allegro_color.h> 12 #include <allegro5/allegro_font.h> 37 Color
color(
unsigned char r,
unsigned char g,
unsigned char b);
46 void setTarget(
int x,
int y,
int w,
int h);
53 void drawRect(
int x1,
int y1,
int x2,
int y2, Color color,
int thickness);
54 void drawText(
int x,
int y, std::string text, Color color);
55 void drawMultilineText(
int x,
int y,
int maxWidth,
float lineHeight, std::string text, Color color);
56 void drawLine(
int x1,
int y1,
int x2,
int y2, Color color,
int thickness);