pikuma_6502_nes/atlantico/actor.inc
2022-12-08 22:34:44 -05:00

16 lines
204 B
HTML

.enum ActorType
NULL = 0
PLAYER = 1
SUBMARINE = 2
AIRPLANE = 3
MISSILE = 4
BOMB = 5
SPRITE0 = 6
.endenum
.struct Actor
Type .byte
XPos .byte
YPos .byte
.endstruct