mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-12 10:07:00 +00:00
9 lines
240 B
C
9 lines
240 B
C
|
|
#include "aclib.h"
|
|
|
|
extern void fast_sprite_8(const byte* pattern, byte* dst);
|
|
extern void fast_sprite_16(const byte* pattern, byte* dst);
|
|
// clips off bottom
|
|
extern void fast_sprite_16_yclip(const byte* pattern, byte* dst, byte height);
|
|
|