mirror of
https://github.com/libretro/gw-libretro.git
synced 2024-11-27 01:41:08 +00:00
10 lines
245 B
C
10 lines
245 B
C
#ifndef PICTURE_H
|
|
#define PICTURE_H
|
|
|
|
#include <gwlua.h>
|
|
|
|
void blit_picture( const gwlua_picture_t* picture, int x, int y, uint16_t* bg );
|
|
void unblit_picture( const gwlua_picture_t* picture, int x, int y, uint16_t* bg );
|
|
|
|
#endif /* PICTURE_H */
|