10 lines
274 B
Go
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))
|
||
|
}
|