diff --git a/Dungeons/Objects/object_handler.asm b/Dungeons/Objects/object_handler.asm index bfe3b9e..9ad7f2e 100644 --- a/Dungeons/Objects/object_handler.asm +++ b/Dungeons/Objects/object_handler.asm @@ -68,6 +68,8 @@ NewObjectsCode: dw .TopRight-.ObjData ; 03 dw .Bottomleft-.ObjData ; 04 dw .BottomRight-.ObjData ; 05 + dw .LeftRightFloor-.ObjData ; 06 + dw .UpDownFloor-.ObjData ; 07 .ObjData .LeftRight @@ -82,6 +84,10 @@ NewObjectsCode: incbin track_corner_BL.bin .BottomRight incbin track_corner_BR.bin + .LeftRightFloor + incbin track_floor_UD.bin + .UpDownFloor + incbin track_floor_LR.bin } diff --git a/Dungeons/Objects/track_floor_LR.bin b/Dungeons/Objects/track_floor_LR.bin new file mode 100644 index 0000000..7f81af0 Binary files /dev/null and b/Dungeons/Objects/track_floor_LR.bin differ diff --git a/Dungeons/Objects/track_floor_UD.bin b/Dungeons/Objects/track_floor_UD.bin new file mode 100644 index 0000000..bd35f2b Binary files /dev/null and b/Dungeons/Objects/track_floor_UD.bin differ