1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2025-01-14 13:31:17 +00:00

9 lines
240 B
C
Raw Normal View History

2019-06-08 12:01:22 -04:00
#include "aclib.h"
extern void fast_sprite_8(const byte* pattern, byte* dst);
extern void fast_sprite_16(const byte* pattern, byte* dst);
2019-07-06 13:41:15 -05:00
// clips off bottom
extern void fast_sprite_16_yclip(const byte* pattern, byte* dst, byte height);
2019-06-08 12:01:22 -04:00