pikuma_6502_nes/atlantico/actor.inc

16 lines
204 B
PHP
Raw Normal View History

2022-12-05 04:13:27 +00:00
.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