package allegro5 // #include import "C" type Color struct { color C.ALLEGRO_COLOR } func NewColor(r, g, b byte) Color { return Color{C.al_map_rgb(C.uchar(r), C.uchar(g), C.uchar(b))} } func NewColorAlpha(r, g, b, a byte) Color { return Color{C.al_map_rgba(C.uchar(r), C.uchar(g), C.uchar(b), C.uchar(a))} }