zntg/allegro5/primitives.go
Sander Schobers 2924980035 Basic wrapper around allegro5 libraries
- Depends on optional allegro libraries font, image, primitives and ttf as well.
2017-10-03 20:38:09 +02:00

10 lines
274 B
Go

package allegro5
// #include <allegro5/allegro.h>
// #include <allegro5/allegro_primitives.h>
import "C"
func DrawLine(x1, y1, x2, y2 float32, c Color, thickness float32) {
C.al_draw_line(C.float(x1), C.float(y1), C.float(x2), C.float(y2), c.color, C.float(thickness))
}