17 lines
200 B
C
17 lines
200 B
C
#ifndef SKELE_BLIT_H
|
|
#define SKELE_BLIT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void skele_video_blit(uint8_t *pixels);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SKELE_BLIT_H */
|