mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-22 14:33:51 +00:00
16 lines
287 B
C
16 lines
287 B
C
|
|
#include "common.h"
|
|
|
|
#define MCB_COLORS 0xc000
|
|
#define MCB_BITMAP 0xe000
|
|
|
|
void setup_bitmap_multi();
|
|
|
|
byte is_pixel(byte x, byte y);
|
|
|
|
void set_pixel(byte x, byte y, byte color);
|
|
|
|
void draw_line(int x0, int y0, int x1, int y1, byte color);
|
|
|
|
byte flood_fill(byte x, byte y, byte color);
|
|
|