G2D_DrawLine
Declaration:
int G2D_DrawLine(int x1, int y1, int x2, int y2,
unsigned short int color);


Purpose:
Draws a line to the screen.

Example:
G2D_DrawLine(1, 1, 50, 50, 31);

1