mirror of
https://github.com/deater/tb1.git
synced 2025-03-01 01:29:30 +00:00
11 lines
295 B
C
11 lines
295 B
C
struct vmwSprite {
|
|
int xsize;
|
|
int ysize;
|
|
unsigned char *spritedata;
|
|
};
|
|
|
|
struct vmwSprite *vmwGetSprite(int x, int y, int xsize, int ysize, unsigned char *source);
|
|
void vmwPutSprite(struct vmwSprite *sprite,int x,int y,int shield_color,
|
|
unsigned char *screen);
|
|
|