mirror of https://github.com/nmlgc/ReC98.git
16 lines
268 B
NASM
16 lines
268 B
NASM
|
; Growing or shrinking circles.
|
||
|
circle_t struc
|
||
|
flag db ?
|
||
|
age db ?
|
||
|
center Point ?
|
||
|
radius_cur dw ?
|
||
|
radius_delta dw ? ; signed
|
||
|
circle_t ends
|
||
|
|
||
|
if GAME eq 5
|
||
|
CIRCLE_COUNT = 8
|
||
|
else
|
||
|
CIRCLE_COUNT = 16
|
||
|
endif
|
||
|
_circles circle_t CIRCLE_COUNT dup(<?>)
|