ReC98/th04/main/boss/explosions[bss].asm

25 lines
456 B
NASM

explosion_t struc
EXPLOSION_alive db ?
age db ?
center Point <?>
EXPLOSION_radius_cur Point <?>
EXPLOSION_radius_delta Point <?>
db ?
angle_offset db ?
explosion_t ends
EXPLOSION_SMALL_COUNT = 2
; explosion_type_t
ET_NONE = -1
ET_CIRCLE = 0
ET_NW_SE = 1
ET_SW_NE = 2
ET_HORIZONTAL = 3
ET_VERTICAL = 4
public _explosions_small
public _explosions_big
_explosions_small explosion_t EXPLOSION_SMALL_COUNT dup (<?>)
_explosions_big explosion_t <?>