mirror of
https://github.com/callapple/Twilight_II.git
synced 2026-03-11 06:41:51 +00:00
7 lines
285 B
C
7 lines
285 B
C
|
|
/* Plot v1.2 */
|
|
extern void init_plot(char * screenPtr, char * lookupPtr);
|
|
extern int get_pixel(int x, int y);
|
|
/* set_pixel and getset_pixel return F if y>199, or 0 if x>319 */
|
|
extern void set_pixel(int x, int y, int color);
|
|
extern int getset_pixel(int x, int y, int color); |