mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-18 05:40:02 +01:00
10 lines
225 B
C
10 lines
225 B
C
#ifndef _DRAWMETHODS_H
|
|
#define _DRAWMETHODS_H
|
|
|
|
#include "goom_config.h"
|
|
#include "goom_graphic.h"
|
|
|
|
void draw_line (Pixel *data, int x1, int y1, int x2, int y2, int col, int screenx, int screeny);
|
|
|
|
#endif /* _DRAWMETHODS_H */
|