mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-21 20:24:39 +00:00
19 lines
295 B
C
19 lines
295 B
C
#ifndef __NB_GRAPHIC_H__
|
|
#define __NB_GRAPHIC_H__
|
|
|
|
#include <nb_pre.h>
|
|
#include <nb_macro.h>
|
|
|
|
/* Type */
|
|
|
|
/* NishBox */
|
|
#include <nb_type/draw.h>
|
|
|
|
/* Standard */
|
|
|
|
void nb_graphic_clear(nb_draw_t* draw);
|
|
void nb_graphic_begin_2d(nb_draw_t* draw);
|
|
void nb_graphic_end_2d(nb_draw_t* draw);
|
|
|
|
#endif
|