mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-28 15:34:26 +00:00
9 lines
169 B
C
9 lines
169 B
C
#ifndef __FENNIX_LIB_DRAW_H__
|
|
#define __FENNIX_LIB_DRAW_H__
|
|
|
|
#include <types.h>
|
|
|
|
void DrawRect(int x, int y, int w, int h, int color);
|
|
|
|
#endif // !__FENNIX_LIB_DRAW_H__
|