mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
14 lines
No EOL
237 B
C
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 |