SCENE_DEFAULT=0 and SCENE_FINISHED=1 (generic constants for a common scene pattern)

This commit is contained in:
Rangi
2018-02-01 15:06:06 -05:00
parent b54a7b7795
commit b2970e75f4
45 changed files with 99 additions and 253 deletions

View File

@@ -5,11 +5,11 @@
MountMoonSquare_MapScripts:
db 1 ; scene scripts
scene_script .DummyScene
scene_script .DummyScene ; SCENE_DEFAULT
db 2 ; callbacks
callback MAPCALLBACK_NEWMAP, .DisappearMoonStone ; SCENE_DEFAULT
callback MAPCALLBACK_OBJECTS, .DisappearRock ; SCENE_MOUNTMOONSQUARE_UNUSED
callback MAPCALLBACK_NEWMAP, .DisappearMoonStone
callback MAPCALLBACK_OBJECTS, .DisappearRock
.DummyScene:
end