mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-21 23:30:58 +00:00
c64: fixed presets
This commit is contained in:
parent
3972da4a13
commit
a3d7cc7dca
24
presets/c64/multisprite.h
Normal file
24
presets/c64/multisprite.h
Normal file
@ -0,0 +1,24 @@
|
||||
|
||||
#include "common.h"
|
||||
|
||||
#define MAX_MSPRITES 28
|
||||
|
||||
extern byte msprite_order[MAX_MSPRITES];
|
||||
extern byte msprite_x_lo[MAX_MSPRITES];
|
||||
extern byte msprite_x_hi[MAX_MSPRITES];
|
||||
extern byte msprite_y[MAX_MSPRITES];
|
||||
extern byte msprite_color[MAX_MSPRITES];
|
||||
extern byte msprite_shape[MAX_MSPRITES];
|
||||
//extern byte msprite_flags[MAX_MSPRITES];
|
||||
extern byte msprite_xvel_lo[MAX_MSPRITES];
|
||||
extern byte msprite_xvel_hi[MAX_MSPRITES];
|
||||
extern byte msprite_yvel_lo[MAX_MSPRITES];
|
||||
extern byte msprite_yvel_hi[MAX_MSPRITES];
|
||||
|
||||
extern byte msprite_last_y;
|
||||
|
||||
void __fastcall__ msprite_render_init();
|
||||
void __fastcall__ msprite_render_section();
|
||||
void __fastcall__ msprite_sort();
|
||||
void __fastcall__ msprite_add_velocity(byte numsprites);
|
||||
|
Loading…
Reference in New Issue
Block a user