nishbox/engine/nb_texture.h
2025-04-03 19:31:55 +09:00

19 lines
350 B
C

#ifndef __NB_TEXTURE_H__
#define __NB_TEXTURE_H__
#include <nb_pre.h>
#include <nb_macro.h>
/* Type */
#include <nb_type/texture.h>
/* NishBox */
#include <nb_type/draw.h>
/* Standard */
nb_texture_t* nb_register_texture(nb_draw_t* draw, int width, int height, unsigned char* data);
void nb_destroy_texture(nb_texture_t* texture);
#endif