boredos_mirror/src/kernel/paint.h
Chris e2cf01bb4a V1.41
I added a simple paint app (and sweden by c418 in bios beep sounds lmao)
2026-02-08 14:47:41 +01:00

14 lines
No EOL
237 B
C

#ifndef PAINT_H
#define PAINT_H
#include "wm.h"
extern Window win_paint;
void paint_init(void);
void paint_reset(void);
void paint_handle_mouse(int x, int y);
void paint_load(const char *path);
void paint_reset_last_pos(void);
#endif