├── .clang-format ├── .clang-tidy ├── .clangd ├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github └── workflows │ ├── build.yaml │ ├── docs.yaml │ ├── lint.yaml │ ├── python.yaml │ └── sync.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── Doxyfile ├── DoxygenLayout.xml ├── README.md ├── assets ├── dx │ ├── .gitkeep │ ├── crash_screen │ │ └── font.png │ └── libgcc_vr4300.a └── mod │ └── .gitkeep ├── configure ├── docs ├── Documenting.md ├── doxytheme │ ├── footer.html │ ├── header.html │ ├── theme.css │ └── theme.js └── favicon.ico ├── flake.lock ├── flake.nix ├── include ├── PR │ ├── PRimage.h │ ├── R4300.h │ ├── abi.h │ ├── bcp.h │ ├── controller.h │ ├── gbi.h │ ├── gs2dex.h │ ├── gt.h │ ├── gu.h │ ├── guint.h │ ├── leo.h │ ├── leoappli.h │ ├── libaudio.h │ ├── mbi.h │ ├── n_abi.h │ ├── n_libaudio.h │ ├── n_libaudio_s_to_n.h │ ├── os.h │ ├── os_ai.h │ ├── os_cache.h │ ├── os_cont.h │ ├── os_convert.h │ ├── os_debug.h │ ├── os_eeprom.h │ ├── os_error.h │ ├── os_exception.h │ ├── os_flash.h │ ├── os_gbpak.h │ ├── os_gio.h │ ├── os_host.h │ ├── os_internal.h │ ├── os_internal_debug.h │ ├── os_internal_error.h │ ├── os_internal_exception.h │ ├── os_internal_flash.h │ ├── os_internal_gio.h │ ├── os_internal_host.h │ ├── os_internal_reg.h │ ├── os_internal_rsp.h │ ├── os_internal_si.h │ ├── os_internal_thread.h │ ├── os_internal_tlb.h │ ├── os_libc.h │ ├── os_message.h │ ├── os_motor.h │ ├── os_pfs.h │ ├── os_pi.h │ ├── os_rdp.h │ ├── os_reg.h │ ├── os_rsp.h │ ├── os_si.h │ ├── os_system.h │ ├── os_thread.h │ ├── os_time.h │ ├── os_tlb.h │ ├── os_version.h │ ├── os_vi.h │ ├── os_voice.h │ ├── osint.h │ ├── piint.h │ ├── ramrom.h │ ├── rcp.h │ ├── rdb.h │ ├── region.h │ ├── rmon.h │ ├── sched.h │ ├── siint.h │ ├── sp.h │ ├── sptask.h │ ├── ucode.h │ ├── ucode_debug.h │ ├── ultraerror.h │ ├── ultralog.h │ ├── ultratypes.h │ └── viint.h ├── camera.h ├── common.h ├── common_structs.h ├── effect_shims.h ├── effects.h ├── effects_internal.h ├── entity.h ├── enums.h ├── evt.h ├── filemenu.h ├── functions.h ├── gbi_custom.h ├── imgfx.h ├── include_asm.h ├── include_asset.h ├── inventory.h ├── item_entity.h ├── libc │ └── xstdio.h ├── macro.inc ├── macros.h ├── map.h ├── mapfs │ ├── arn_02_hit.h │ ├── arn_02_shape.h │ ├── arn_03_hit.h │ ├── arn_03_shape.h │ ├── arn_04_hit.h │ ├── arn_04_shape.h │ ├── arn_05_hit.h │ ├── arn_05_shape.h │ ├── arn_07_hit.h │ ├── arn_07_shape.h │ ├── arn_08_hit.h │ ├── arn_08_shape.h │ ├── arn_09_hit.h │ ├── arn_09_shape.h │ ├── arn_10_hit.h │ ├── arn_10_shape.h │ ├── arn_11_hit.h │ ├── arn_11_shape.h │ ├── arn_12_hit.h │ ├── arn_12_shape.h │ ├── arn_13_hit.h │ ├── arn_13_shape.h │ ├── arn_20_hit.h │ ├── arn_20_shape.h │ ├── arn_bt01_hit.h │ ├── arn_bt01_shape.h │ ├── arn_bt02_hit.h │ ├── arn_bt02_shape.h │ ├── arn_bt03_hit.h │ ├── arn_bt03_shape.h │ ├── arn_bt04_hit.h │ ├── arn_bt04_shape.h │ ├── arn_bt05_hit.h │ ├── arn_bt05_shape.h │ ├── arn_bt06_hit.h │ ├── arn_bt06_shape.h │ ├── dgb_00_hit.h │ ├── dgb_00_shape.h │ ├── dgb_01_hit.h │ ├── dgb_01_shape.h │ ├── dgb_02_hit.h │ ├── dgb_02_shape.h │ ├── dgb_03_hit.h │ ├── dgb_03_shape.h │ ├── dgb_04_hit.h │ ├── dgb_04_shape.h │ ├── dgb_05_hit.h │ ├── dgb_05_shape.h │ ├── dgb_06_hit.h │ ├── dgb_06_shape.h │ ├── dgb_07_hit.h │ ├── dgb_07_shape.h │ ├── dgb_08_hit.h │ ├── dgb_08_shape.h │ ├── dgb_09_hit.h │ ├── dgb_09_shape.h │ ├── dgb_10_hit.h │ ├── dgb_10_shape.h │ ├── dgb_11_hit.h │ ├── dgb_11_shape.h │ ├── dgb_12_hit.h │ ├── dgb_12_shape.h │ ├── dgb_13_hit.h │ ├── dgb_13_shape.h │ ├── dgb_14_hit.h │ ├── dgb_14_shape.h │ ├── dgb_15_hit.h │ ├── dgb_15_shape.h │ ├── dgb_16_hit.h │ ├── dgb_16_shape.h │ ├── dgb_17_hit.h │ ├── dgb_17_shape.h │ ├── dgb_18_hit.h │ ├── dgb_18_shape.h │ ├── dgb_bt01_hit.h │ ├── dgb_bt01_shape.h │ ├── dgb_bt02_hit.h │ ├── dgb_bt02_shape.h │ ├── dgb_bt03_hit.h │ ├── dgb_bt03_shape.h │ ├── dgb_bt04_hit.h │ ├── dgb_bt04_shape.h │ ├── dgb_bt05_hit.h │ ├── dgb_bt05_shape.h │ ├── dro_01_hit.h │ ├── dro_01_shape.h │ ├── dro_02_hit.h │ ├── dro_02_shape.h │ ├── end_00_hit.h │ ├── end_00_shape.h │ ├── end_01_hit.h │ ├── end_01_shape.h │ ├── flo_00_hit.h │ ├── flo_00_shape.h │ ├── flo_03_hit.h │ ├── flo_03_shape.h │ ├── flo_07_hit.h │ ├── flo_07_shape.h │ ├── flo_08_hit.h │ ├── flo_08_shape.h │ ├── flo_09_hit.h │ ├── flo_09_shape.h │ ├── flo_10_hit.h │ ├── flo_10_shape.h │ ├── flo_11_hit.h │ ├── flo_11_shape.h │ ├── flo_12_hit.h │ ├── flo_12_shape.h │ ├── flo_13_hit.h │ ├── flo_13_shape.h │ ├── flo_14_hit.h │ ├── flo_14_shape.h │ ├── flo_15_hit.h │ ├── flo_15_shape.h │ ├── flo_16_hit.h │ ├── flo_16_shape.h │ ├── flo_17_hit.h │ ├── flo_17_shape.h │ ├── flo_18_hit.h │ ├── flo_18_shape.h │ ├── flo_19_hit.h │ ├── flo_19_shape.h │ ├── flo_21_hit.h │ ├── flo_21_shape.h │ ├── flo_22_hit.h │ ├── flo_22_shape.h │ ├── flo_23_hit.h │ ├── flo_23_shape.h │ ├── flo_24_hit.h │ ├── flo_24_shape.h │ ├── flo_25_hit.h │ ├── flo_25_shape.h │ ├── flo_bt01_hit.h │ ├── flo_bt01_shape.h │ ├── flo_bt02_hit.h │ ├── flo_bt02_shape.h │ ├── flo_bt03_hit.h │ ├── flo_bt03_shape.h │ ├── flo_bt04_hit.h │ ├── flo_bt04_shape.h │ ├── flo_bt05_hit.h │ ├── flo_bt05_shape.h │ ├── flo_bt06_hit.h │ ├── flo_bt06_shape.h │ ├── gv_01_hit.h │ ├── gv_01_shape.h │ ├── hos_00_hit.h │ ├── hos_00_shape.h │ ├── hos_01_hit.h │ ├── hos_01_shape.h │ ├── hos_02_hit.h │ ├── hos_02_shape.h │ ├── hos_03_hit.h │ ├── hos_03_shape.h │ ├── hos_04_hit.h │ ├── hos_04_shape.h │ ├── hos_05_hit.h │ ├── hos_05_shape.h │ ├── hos_06_hit.h │ ├── hos_06_shape.h │ ├── hos_10_hit.h │ ├── hos_10_shape.h │ ├── hos_20_hit.h │ ├── hos_20_shape.h │ ├── hos_bt01_hit.h │ ├── hos_bt01_shape.h │ ├── hos_bt02_hit.h │ ├── hos_bt02_shape.h │ ├── isk_01_hit.h │ ├── isk_01_shape.h │ ├── isk_02_hit.h │ ├── isk_02_shape.h │ ├── isk_03_hit.h │ ├── isk_03_shape.h │ ├── isk_04_hit.h │ ├── isk_04_shape.h │ ├── isk_05_hit.h │ ├── isk_05_shape.h │ ├── isk_06_hit.h │ ├── isk_06_shape.h │ ├── isk_07_hit.h │ ├── isk_07_shape.h │ ├── isk_08_hit.h │ ├── isk_08_shape.h │ ├── isk_09_hit.h │ ├── isk_09_shape.h │ ├── isk_10_hit.h │ ├── isk_10_shape.h │ ├── isk_11_hit.h │ ├── isk_11_shape.h │ ├── isk_12_hit.h │ ├── isk_12_shape.h │ ├── isk_13_hit.h │ ├── isk_13_shape.h │ ├── isk_14_hit.h │ ├── isk_14_shape.h │ ├── isk_16_hit.h │ ├── isk_16_shape.h │ ├── isk_18_hit.h │ ├── isk_18_shape.h │ ├── isk_19_hit.h │ ├── isk_19_shape.h │ ├── isk_bt01_hit.h │ ├── isk_bt01_shape.h │ ├── isk_bt02_hit.h │ ├── isk_bt02_shape.h │ ├── isk_bt03_hit.h │ ├── isk_bt03_shape.h │ ├── isk_bt04_hit.h │ ├── isk_bt04_shape.h │ ├── isk_bt05_hit.h │ ├── isk_bt05_shape.h │ ├── isk_bt06_hit.h │ ├── isk_bt06_shape.h │ ├── isk_bt07_hit.h │ ├── isk_bt07_shape.h │ ├── isk_bt08_hit.h │ ├── isk_bt08_shape.h │ ├── iwa_00_hit.h │ ├── iwa_00_shape.h │ ├── iwa_01_hit.h │ ├── iwa_01_shape.h │ ├── iwa_02_hit.h │ ├── iwa_02_shape.h │ ├── iwa_03_hit.h │ ├── iwa_03_shape.h │ ├── iwa_04_hit.h │ ├── iwa_04_shape.h │ ├── iwa_10_hit.h │ ├── iwa_10_shape.h │ ├── iwa_11_hit.h │ ├── iwa_11_shape.h │ ├── iwa_bt01_hit.h │ ├── iwa_bt01_shape.h │ ├── iwa_bt02_hit.h │ ├── iwa_bt02_shape.h │ ├── jan_00_hit.h │ ├── jan_00_shape.h │ ├── jan_01_hit.h │ ├── jan_01_shape.h │ ├── jan_02_hit.h │ ├── jan_02_shape.h │ ├── jan_03_hit.h │ ├── jan_03_shape.h │ ├── jan_04_hit.h │ ├── jan_04_shape.h │ ├── jan_05_hit.h │ ├── jan_05_shape.h │ ├── jan_06_hit.h │ ├── jan_06_shape.h │ ├── jan_07_hit.h │ ├── jan_07_shape.h │ ├── jan_08_hit.h │ ├── jan_08_shape.h │ ├── jan_09_hit.h │ ├── jan_09_shape.h │ ├── jan_10_hit.h │ ├── jan_10_shape.h │ ├── jan_11_hit.h │ ├── jan_11_shape.h │ ├── jan_12_hit.h │ ├── jan_12_shape.h │ ├── jan_13_hit.h │ ├── jan_13_shape.h │ ├── jan_14_hit.h │ ├── jan_14_shape.h │ ├── jan_15_hit.h │ ├── jan_15_shape.h │ ├── jan_16_hit.h │ ├── jan_16_shape.h │ ├── jan_17_hit.h │ ├── jan_17_shape.h │ ├── jan_18_hit.h │ ├── jan_18_shape.h │ ├── jan_19_hit.h │ ├── jan_19_shape.h │ ├── jan_22_hit.h │ ├── jan_22_shape.h │ ├── jan_23_hit.h │ ├── jan_23_shape.h │ ├── jan_bt00_hit.h │ ├── jan_bt00_shape.h │ ├── jan_bt01_hit.h │ ├── jan_bt01_shape.h │ ├── jan_bt02_hit.h │ ├── jan_bt02_shape.h │ ├── jan_bt03_hit.h │ ├── jan_bt03_shape.h │ ├── jan_bt04_hit.h │ ├── jan_bt04_shape.h │ ├── kgr_01_hit.h │ ├── kgr_01_shape.h │ ├── kgr_02_hit.h │ ├── kgr_02_shape.h │ ├── kgr_bt01_hit.h │ ├── kgr_bt01_shape.h │ ├── kkj_00_hit.h │ ├── kkj_00_shape.h │ ├── kkj_01_hit.h │ ├── kkj_01_shape.h │ ├── kkj_02_hit.h │ ├── kkj_02_shape.h │ ├── kkj_03_hit.h │ ├── kkj_03_shape.h │ ├── kkj_10_hit.h │ ├── kkj_10_shape.h │ ├── kkj_11_hit.h │ ├── kkj_11_shape.h │ ├── kkj_12_hit.h │ ├── kkj_12_shape.h │ ├── kkj_13_hit.h │ ├── kkj_13_shape.h │ ├── kkj_14_hit.h │ ├── kkj_14_shape.h │ ├── kkj_15_hit.h │ ├── kkj_15_shape.h │ ├── kkj_16_hit.h │ ├── kkj_16_shape.h │ ├── kkj_17_hit.h │ ├── kkj_17_shape.h │ ├── kkj_18_hit.h │ ├── kkj_18_shape.h │ ├── kkj_19_hit.h │ ├── kkj_19_shape.h │ ├── kkj_20_hit.h │ ├── kkj_20_shape.h │ ├── kkj_21_hit.h │ ├── kkj_21_shape.h │ ├── kkj_22_hit.h │ ├── kkj_22_shape.h │ ├── kkj_23_hit.h │ ├── kkj_23_shape.h │ ├── kkj_24_hit.h │ ├── kkj_24_shape.h │ ├── kkj_25_hit.h │ ├── kkj_25_shape.h │ ├── kkj_26_hit.h │ ├── kkj_26_shape.h │ ├── kkj_27_hit.h │ ├── kkj_27_shape.h │ ├── kkj_28_hit.h │ ├── kkj_28_shape.h │ ├── kkj_29_hit.h │ ├── kkj_29_shape.h │ ├── kkj_bt01_hit.h │ ├── kkj_bt01_shape.h │ ├── kkj_bt02_hit.h │ ├── kkj_bt02_shape.h │ ├── kmr_00_hit.h │ ├── kmr_00_shape.h │ ├── kmr_02_hit.h │ ├── kmr_02_shape.h │ ├── kmr_03_hit.h │ ├── kmr_03_shape.h │ ├── kmr_04_hit.h │ ├── kmr_04_shape.h │ ├── kmr_05_hit.h │ ├── kmr_05_shape.h │ ├── kmr_06_hit.h │ ├── kmr_06_shape.h │ ├── kmr_07_hit.h │ ├── kmr_07_shape.h │ ├── kmr_09_hit.h │ ├── kmr_09_shape.h │ ├── kmr_10_hit.h │ ├── kmr_10_shape.h │ ├── kmr_11_hit.h │ ├── kmr_11_shape.h │ ├── kmr_12_hit.h │ ├── kmr_12_shape.h │ ├── kmr_20_hit.h │ ├── kmr_20_shape.h │ ├── kmr_21_hit.h │ ├── kmr_21_shape.h │ ├── kmr_22_hit.h │ ├── kmr_22_shape.h │ ├── kmr_23_hit.h │ ├── kmr_23_shape.h │ ├── kmr_24_hit.h │ ├── kmr_24_shape.h │ ├── kmr_30_hit.h │ ├── kmr_30_shape.h │ ├── kmr_bt03_hit.h │ ├── kmr_bt03_shape.h │ ├── kmr_bt04_hit.h │ ├── kmr_bt04_shape.h │ ├── kmr_bt05_hit.h │ ├── kmr_bt05_shape.h │ ├── kmr_bt06_hit.h │ ├── kmr_bt06_shape.h │ ├── kpa_01_hit.h │ ├── kpa_01_shape.h │ ├── kpa_03_hit.h │ ├── kpa_03_shape.h │ ├── kpa_04_hit.h │ ├── kpa_04_shape.h │ ├── kpa_08_hit.h │ ├── kpa_08_shape.h │ ├── kpa_09_hit.h │ ├── kpa_09_shape.h │ ├── kpa_100_hit.h │ ├── kpa_100_shape.h │ ├── kpa_101_hit.h │ ├── kpa_101_shape.h │ ├── kpa_102_hit.h │ ├── kpa_102_shape.h │ ├── kpa_10_hit.h │ ├── kpa_10_shape.h │ ├── kpa_111_hit.h │ ├── kpa_111_shape.h │ ├── kpa_112_hit.h │ ├── kpa_112_shape.h │ ├── kpa_113_hit.h │ ├── kpa_113_shape.h │ ├── kpa_114_hit.h │ ├── kpa_114_shape.h │ ├── kpa_115_hit.h │ ├── kpa_115_shape.h │ ├── kpa_116_hit.h │ ├── kpa_116_shape.h │ ├── kpa_117_hit.h │ ├── kpa_117_shape.h │ ├── kpa_118_hit.h │ ├── kpa_118_shape.h │ ├── kpa_119_hit.h │ ├── kpa_119_shape.h │ ├── kpa_11_hit.h │ ├── kpa_11_shape.h │ ├── kpa_121_hit.h │ ├── kpa_121_shape.h │ ├── kpa_12_hit.h │ ├── kpa_12_shape.h │ ├── kpa_130_hit.h │ ├── kpa_130_shape.h │ ├── kpa_133_hit.h │ ├── kpa_133_shape.h │ ├── kpa_134_hit.h │ ├── kpa_134_shape.h │ ├── kpa_13_hit.h │ ├── kpa_13_shape.h │ ├── kpa_14_hit.h │ ├── kpa_14_shape.h │ ├── kpa_15_hit.h │ ├── kpa_15_shape.h │ ├── kpa_16_hit.h │ ├── kpa_16_shape.h │ ├── kpa_17_hit.h │ ├── kpa_17_shape.h │ ├── kpa_32_hit.h │ ├── kpa_32_shape.h │ ├── kpa_33_hit.h │ ├── kpa_33_shape.h │ ├── kpa_40_hit.h │ ├── kpa_40_shape.h │ ├── kpa_41_hit.h │ ├── kpa_41_shape.h │ ├── kpa_50_hit.h │ ├── kpa_50_shape.h │ ├── kpa_51_hit.h │ ├── kpa_51_shape.h │ ├── kpa_52_hit.h │ ├── kpa_52_shape.h │ ├── kpa_53_hit.h │ ├── kpa_53_shape.h │ ├── kpa_60_hit.h │ ├── kpa_60_shape.h │ ├── kpa_61_hit.h │ ├── kpa_61_shape.h │ ├── kpa_62_hit.h │ ├── kpa_62_shape.h │ ├── kpa_63_hit.h │ ├── kpa_63_shape.h │ ├── kpa_70_hit.h │ ├── kpa_70_shape.h │ ├── kpa_80_hit.h │ ├── kpa_80_shape.h │ ├── kpa_81_hit.h │ ├── kpa_81_shape.h │ ├── kpa_82_hit.h │ ├── kpa_82_shape.h │ ├── kpa_83_hit.h │ ├── kpa_83_shape.h │ ├── kpa_90_hit.h │ ├── kpa_90_shape.h │ ├── kpa_91_hit.h │ ├── kpa_91_shape.h │ ├── kpa_94_hit.h │ ├── kpa_94_shape.h │ ├── kpa_95_hit.h │ ├── kpa_95_shape.h │ ├── kpa_96_hit.h │ ├── kpa_96_shape.h │ ├── kpa_bt01_hit.h │ ├── kpa_bt01_shape.h │ ├── kpa_bt02_hit.h │ ├── kpa_bt02_shape.h │ ├── kpa_bt03_hit.h │ ├── kpa_bt03_shape.h │ ├── kpa_bt04_hit.h │ ├── kpa_bt04_shape.h │ ├── kpa_bt05_hit.h │ ├── kpa_bt05_shape.h │ ├── kpa_bt07_hit.h │ ├── kpa_bt07_shape.h │ ├── kpa_bt08_hit.h │ ├── kpa_bt08_shape.h │ ├── kpa_bt09_hit.h │ ├── kpa_bt09_shape.h │ ├── kpa_bt11_hit.h │ ├── kpa_bt11_shape.h │ ├── kpa_bt13_hit.h │ ├── kpa_bt13_shape.h │ ├── kpa_bt14_hit.h │ ├── kpa_bt14_shape.h │ ├── kzn_01_hit.h │ ├── kzn_01_shape.h │ ├── kzn_02_hit.h │ ├── kzn_02_shape.h │ ├── kzn_03_hit.h │ ├── kzn_03_shape.h │ ├── kzn_04_hit.h │ ├── kzn_04_shape.h │ ├── kzn_05_hit.h │ ├── kzn_05_shape.h │ ├── kzn_06_hit.h │ ├── kzn_06_shape.h │ ├── kzn_07_hit.h │ ├── kzn_07_shape.h │ ├── kzn_08_hit.h │ ├── kzn_08_shape.h │ ├── kzn_09_hit.h │ ├── kzn_09_shape.h │ ├── kzn_10_hit.h │ ├── kzn_10_shape.h │ ├── kzn_11_hit.h │ ├── kzn_11_shape.h │ ├── kzn_17_hit.h │ ├── kzn_17_shape.h │ ├── kzn_18_hit.h │ ├── kzn_18_shape.h │ ├── kzn_19_hit.h │ ├── kzn_19_shape.h │ ├── kzn_20_hit.h │ ├── kzn_20_shape.h │ ├── kzn_22_hit.h │ ├── kzn_22_shape.h │ ├── kzn_23_hit.h │ ├── kzn_23_shape.h │ ├── kzn_bt01_hit.h │ ├── kzn_bt01_shape.h │ ├── kzn_bt02_hit.h │ ├── kzn_bt02_shape.h │ ├── kzn_bt04_hit.h │ ├── kzn_bt04_shape.h │ ├── kzn_bt05_hit.h │ ├── kzn_bt05_shape.h │ ├── mac_00_hit.h │ ├── mac_00_shape.h │ ├── mac_01_hit.h │ ├── mac_01_shape.h │ ├── mac_02_hit.h │ ├── mac_02_shape.h │ ├── mac_03_hit.h │ ├── mac_03_shape.h │ ├── mac_04_hit.h │ ├── mac_04_shape.h │ ├── mac_05_hit.h │ ├── mac_05_shape.h │ ├── mac_06_hit.h │ ├── mac_06_shape.h │ ├── mac_bt01_hit.h │ ├── mac_bt01_shape.h │ ├── mac_bt02_hit.h │ ├── mac_bt02_shape.h │ ├── machi_hit.h │ ├── machi_shape.h │ ├── mgm_00_hit.h │ ├── mgm_00_shape.h │ ├── mgm_01_hit.h │ ├── mgm_01_shape.h │ ├── mgm_02_hit.h │ ├── mgm_02_shape.h │ ├── mgm_03_hit.h │ ├── mgm_03_shape.h │ ├── mim_01_hit.h │ ├── mim_01_shape.h │ ├── mim_02_hit.h │ ├── mim_02_shape.h │ ├── mim_03_hit.h │ ├── mim_03_shape.h │ ├── mim_04_hit.h │ ├── mim_04_shape.h │ ├── mim_05_hit.h │ ├── mim_05_shape.h │ ├── mim_06_hit.h │ ├── mim_06_shape.h │ ├── mim_07_hit.h │ ├── mim_07_shape.h │ ├── mim_08_hit.h │ ├── mim_08_shape.h │ ├── mim_09_hit.h │ ├── mim_09_shape.h │ ├── mim_10_hit.h │ ├── mim_10_shape.h │ ├── mim_11_hit.h │ ├── mim_11_shape.h │ ├── mim_12_hit.h │ ├── mim_12_shape.h │ ├── mim_bt01_hit.h │ ├── mim_bt01_shape.h │ ├── nok_01_hit.h │ ├── nok_01_shape.h │ ├── nok_02_hit.h │ ├── nok_02_shape.h │ ├── nok_03_hit.h │ ├── nok_03_shape.h │ ├── nok_04_hit.h │ ├── nok_04_shape.h │ ├── nok_11_hit.h │ ├── nok_11_shape.h │ ├── nok_12_hit.h │ ├── nok_12_shape.h │ ├── nok_13_hit.h │ ├── nok_13_shape.h │ ├── nok_14_hit.h │ ├── nok_14_shape.h │ ├── nok_15_hit.h │ ├── nok_15_shape.h │ ├── nok_bt01_hit.h │ ├── nok_bt01_shape.h │ ├── nok_bt02_hit.h │ ├── nok_bt02_shape.h │ ├── nok_bt03_hit.h │ ├── nok_bt03_shape.h │ ├── nok_bt04_hit.h │ ├── nok_bt04_shape.h │ ├── obk_01_hit.h │ ├── obk_01_shape.h │ ├── obk_02_hit.h │ ├── obk_02_shape.h │ ├── obk_03_hit.h │ ├── obk_03_shape.h │ ├── obk_04_hit.h │ ├── obk_04_shape.h │ ├── obk_05_hit.h │ ├── obk_05_shape.h │ ├── obk_06_hit.h │ ├── obk_06_shape.h │ ├── obk_07_hit.h │ ├── obk_07_shape.h │ ├── obk_08_hit.h │ ├── obk_08_shape.h │ ├── obk_09_hit.h │ ├── obk_09_shape.h │ ├── omo_01_hit.h │ ├── omo_01_shape.h │ ├── omo_02_hit.h │ ├── omo_02_shape.h │ ├── omo_03_hit.h │ ├── omo_03_shape.h │ ├── omo_04_hit.h │ ├── omo_04_shape.h │ ├── omo_05_hit.h │ ├── omo_05_shape.h │ ├── omo_06_hit.h │ ├── omo_06_shape.h │ ├── omo_07_hit.h │ ├── omo_07_shape.h │ ├── omo_08_hit.h │ ├── omo_08_shape.h │ ├── omo_09_hit.h │ ├── omo_09_shape.h │ ├── omo_10_hit.h │ ├── omo_10_shape.h │ ├── omo_11_hit.h │ ├── omo_11_shape.h │ ├── omo_12_hit.h │ ├── omo_12_shape.h │ ├── omo_13_hit.h │ ├── omo_13_shape.h │ ├── omo_14_hit.h │ ├── omo_14_shape.h │ ├── omo_15_hit.h │ ├── omo_15_shape.h │ ├── omo_16_hit.h │ ├── omo_16_shape.h │ ├── omo_17_hit.h │ ├── omo_17_shape.h │ ├── omo_bt01_hit.h │ ├── omo_bt01_shape.h │ ├── omo_bt02_hit.h │ ├── omo_bt02_shape.h │ ├── omo_bt03_hit.h │ ├── omo_bt03_shape.h │ ├── omo_bt04_hit.h │ ├── omo_bt04_shape.h │ ├── omo_bt05_hit.h │ ├── omo_bt05_shape.h │ ├── omo_bt06_hit.h │ ├── omo_bt06_shape.h │ ├── omo_bt07_hit.h │ ├── omo_bt07_shape.h │ ├── osr_00_hit.h │ ├── osr_00_shape.h │ ├── osr_01_hit.h │ ├── osr_01_shape.h │ ├── osr_02_hit.h │ ├── osr_02_shape.h │ ├── osr_03_hit.h │ ├── osr_03_shape.h │ ├── osr_04_hit.h │ ├── osr_04_shape.h │ ├── pra_01_hit.h │ ├── pra_01_shape.h │ ├── pra_02_hit.h │ ├── pra_02_shape.h │ ├── pra_03_hit.h │ ├── pra_03_shape.h │ ├── pra_04_hit.h │ ├── pra_04_shape.h │ ├── pra_05_hit.h │ ├── pra_05_shape.h │ ├── pra_06_hit.h │ ├── pra_06_shape.h │ ├── pra_09_hit.h │ ├── pra_09_shape.h │ ├── pra_10_hit.h │ ├── pra_10_shape.h │ ├── pra_11_hit.h │ ├── pra_11_shape.h │ ├── pra_12_hit.h │ ├── pra_12_shape.h │ ├── pra_13_hit.h │ ├── pra_13_shape.h │ ├── pra_14_hit.h │ ├── pra_14_shape.h │ ├── pra_15_hit.h │ ├── pra_15_shape.h │ ├── pra_16_hit.h │ ├── pra_16_shape.h │ ├── pra_18_hit.h │ ├── pra_18_shape.h │ ├── pra_19_hit.h │ ├── pra_19_shape.h │ ├── pra_20_hit.h │ ├── pra_20_shape.h │ ├── pra_21_hit.h │ ├── pra_21_shape.h │ ├── pra_22_hit.h │ ├── pra_22_shape.h │ ├── pra_27_hit.h │ ├── pra_27_shape.h │ ├── pra_28_hit.h │ ├── pra_28_shape.h │ ├── pra_29_hit.h │ ├── pra_29_shape.h │ ├── pra_31_hit.h │ ├── pra_31_shape.h │ ├── pra_32_hit.h │ ├── pra_32_shape.h │ ├── pra_33_hit.h │ ├── pra_33_shape.h │ ├── pra_34_hit.h │ ├── pra_34_shape.h │ ├── pra_35_hit.h │ ├── pra_35_shape.h │ ├── pra_36_hit.h │ ├── pra_36_shape.h │ ├── pra_37_hit.h │ ├── pra_37_shape.h │ ├── pra_38_hit.h │ ├── pra_38_shape.h │ ├── pra_39_hit.h │ ├── pra_39_shape.h │ ├── pra_40_hit.h │ ├── pra_40_shape.h │ ├── pra_bt01_hit.h │ ├── pra_bt01_shape.h │ ├── pra_bt02_hit.h │ ├── pra_bt02_shape.h │ ├── pra_bt03_hit.h │ ├── pra_bt03_shape.h │ ├── pra_bt04_hit.h │ ├── pra_bt04_shape.h │ ├── sam_01_hit.h │ ├── sam_01_shape.h │ ├── sam_02_hit.h │ ├── sam_02_shape.h │ ├── sam_03_hit.h │ ├── sam_03_shape.h │ ├── sam_04_hit.h │ ├── sam_04_shape.h │ ├── sam_05_hit.h │ ├── sam_05_shape.h │ ├── sam_06_hit.h │ ├── sam_06_shape.h │ ├── sam_07_hit.h │ ├── sam_07_shape.h │ ├── sam_08_hit.h │ ├── sam_08_shape.h │ ├── sam_09_hit.h │ ├── sam_09_shape.h │ ├── sam_10_hit.h │ ├── sam_10_shape.h │ ├── sam_11_hit.h │ ├── sam_11_shape.h │ ├── sam_12_hit.h │ ├── sam_12_shape.h │ ├── sam_bt01_hit.h │ ├── sam_bt01_shape.h │ ├── sam_bt02_hit.h │ ├── sam_bt02_shape.h │ ├── sam_bt03_hit.h │ ├── sam_bt03_shape.h │ ├── sam_bt04_hit.h │ ├── sam_bt04_shape.h │ ├── sbk_00_hit.h │ ├── sbk_00_shape.h │ ├── sbk_01_hit.h │ ├── sbk_01_shape.h │ ├── sbk_02_hit.h │ ├── sbk_02_shape.h │ ├── sbk_03_hit.h │ ├── sbk_03_shape.h │ ├── sbk_04_hit.h │ ├── sbk_04_shape.h │ ├── sbk_05_hit.h │ ├── sbk_05_shape.h │ ├── sbk_06_hit.h │ ├── sbk_06_shape.h │ ├── sbk_10_hit.h │ ├── sbk_10_shape.h │ ├── sbk_11_hit.h │ ├── sbk_11_shape.h │ ├── sbk_12_hit.h │ ├── sbk_12_shape.h │ ├── sbk_13_hit.h │ ├── sbk_13_shape.h │ ├── sbk_14_hit.h │ ├── sbk_14_shape.h │ ├── sbk_15_hit.h │ ├── sbk_15_shape.h │ ├── sbk_16_hit.h │ ├── sbk_16_shape.h │ ├── sbk_20_hit.h │ ├── sbk_20_shape.h │ ├── sbk_21_hit.h │ ├── sbk_21_shape.h │ ├── sbk_22_hit.h │ ├── sbk_22_shape.h │ ├── sbk_23_hit.h │ ├── sbk_23_shape.h │ ├── sbk_24_hit.h │ ├── sbk_24_shape.h │ ├── sbk_25_hit.h │ ├── sbk_25_shape.h │ ├── sbk_26_hit.h │ ├── sbk_26_shape.h │ ├── sbk_30_hit.h │ ├── sbk_30_shape.h │ ├── sbk_31_hit.h │ ├── sbk_31_shape.h │ ├── sbk_32_hit.h │ ├── sbk_32_shape.h │ ├── sbk_33_hit.h │ ├── sbk_33_shape.h │ ├── sbk_34_hit.h │ ├── sbk_34_shape.h │ ├── sbk_35_hit.h │ ├── sbk_35_shape.h │ ├── sbk_36_hit.h │ ├── sbk_36_shape.h │ ├── sbk_40_hit.h │ ├── sbk_40_shape.h │ ├── sbk_41_hit.h │ ├── sbk_41_shape.h │ ├── sbk_42_hit.h │ ├── sbk_42_shape.h │ ├── sbk_43_hit.h │ ├── sbk_43_shape.h │ ├── sbk_44_hit.h │ ├── sbk_44_shape.h │ ├── sbk_45_hit.h │ ├── sbk_45_shape.h │ ├── sbk_46_hit.h │ ├── sbk_46_shape.h │ ├── sbk_50_hit.h │ ├── sbk_50_shape.h │ ├── sbk_51_hit.h │ ├── sbk_51_shape.h │ ├── sbk_52_hit.h │ ├── sbk_52_shape.h │ ├── sbk_53_hit.h │ ├── sbk_53_shape.h │ ├── sbk_54_hit.h │ ├── sbk_54_shape.h │ ├── sbk_55_hit.h │ ├── sbk_55_shape.h │ ├── sbk_56_hit.h │ ├── sbk_56_shape.h │ ├── sbk_60_hit.h │ ├── sbk_60_shape.h │ ├── sbk_61_hit.h │ ├── sbk_61_shape.h │ ├── sbk_62_hit.h │ ├── sbk_62_shape.h │ ├── sbk_63_hit.h │ ├── sbk_63_shape.h │ ├── sbk_64_hit.h │ ├── sbk_64_shape.h │ ├── sbk_65_hit.h │ ├── sbk_65_shape.h │ ├── sbk_66_hit.h │ ├── sbk_66_shape.h │ ├── sbk_99_hit.h │ ├── sbk_99_shape.h │ ├── sbk_bt02_hit.h │ ├── sbk_bt02_shape.h │ ├── tik_01_hit.h │ ├── tik_01_shape.h │ ├── tik_02_hit.h │ ├── tik_02_shape.h │ ├── tik_03_hit.h │ ├── tik_03_shape.h │ ├── tik_04_hit.h │ ├── tik_04_shape.h │ ├── tik_05_hit.h │ ├── tik_05_shape.h │ ├── tik_06_hit.h │ ├── tik_06_shape.h │ ├── tik_07_hit.h │ ├── tik_07_shape.h │ ├── tik_08_hit.h │ ├── tik_08_shape.h │ ├── tik_09_hit.h │ ├── tik_09_shape.h │ ├── tik_10_hit.h │ ├── tik_10_shape.h │ ├── tik_12_hit.h │ ├── tik_12_shape.h │ ├── tik_14_hit.h │ ├── tik_14_shape.h │ ├── tik_15_hit.h │ ├── tik_15_shape.h │ ├── tik_17_hit.h │ ├── tik_17_shape.h │ ├── tik_18_hit.h │ ├── tik_18_shape.h │ ├── tik_19_hit.h │ ├── tik_19_shape.h │ ├── tik_20_hit.h │ ├── tik_20_shape.h │ ├── tik_21_hit.h │ ├── tik_21_shape.h │ ├── tik_22_hit.h │ ├── tik_22_shape.h │ ├── tik_23_hit.h │ ├── tik_23_shape.h │ ├── tik_24_hit.h │ ├── tik_24_shape.h │ ├── tik_25_hit.h │ ├── tik_25_shape.h │ ├── tik_bt01_hit.h │ ├── tik_bt01_shape.h │ ├── tik_bt02_hit.h │ ├── tik_bt02_shape.h │ ├── tik_bt03_hit.h │ ├── tik_bt03_shape.h │ ├── tik_bt04_hit.h │ ├── tik_bt04_shape.h │ ├── tik_bt05_hit.h │ ├── tik_bt05_shape.h │ ├── trd_00_hit.h │ ├── trd_00_shape.h │ ├── trd_01_hit.h │ ├── trd_01_shape.h │ ├── trd_02_hit.h │ ├── trd_02_shape.h │ ├── trd_03_hit.h │ ├── trd_03_shape.h │ ├── trd_04_hit.h │ ├── trd_04_shape.h │ ├── trd_05_hit.h │ ├── trd_05_shape.h │ ├── trd_06_hit.h │ ├── trd_06_shape.h │ ├── trd_07_hit.h │ ├── trd_07_shape.h │ ├── trd_08_hit.h │ ├── trd_08_shape.h │ ├── trd_09_hit.h │ ├── trd_09_shape.h │ ├── trd_10_hit.h │ ├── trd_10_shape.h │ ├── trd_bt00_hit.h │ ├── trd_bt00_shape.h │ ├── trd_bt01_hit.h │ ├── trd_bt01_shape.h │ ├── trd_bt02_hit.h │ ├── trd_bt02_shape.h │ ├── trd_bt03_hit.h │ ├── trd_bt03_shape.h │ ├── trd_bt04_hit.h │ ├── trd_bt04_shape.h │ ├── trd_bt05_hit.h │ ├── trd_bt05_shape.h │ ├── tst_01_hit.h │ ├── tst_01_shape.h │ ├── tst_02_hit.h │ ├── tst_02_shape.h │ ├── tst_03_hit.h │ ├── tst_03_shape.h │ ├── tst_04_hit.h │ ├── tst_04_shape.h │ ├── tst_10_hit.h │ ├── tst_10_shape.h │ ├── tst_11_hit.h │ ├── tst_11_shape.h │ ├── tst_12_hit.h │ ├── tst_12_shape.h │ ├── tst_13_hit.h │ ├── tst_13_shape.h │ ├── tst_20_hit.h │ └── tst_20_shape.h ├── messages.h ├── mips.h ├── model.h ├── move_addu.inc ├── npc.h ├── nu │ ├── nualsgi.h │ └── nusys.h ├── overlay.h ├── qsort.h ├── rumble.h ├── saved_byte_names.h ├── saved_flag_names.h ├── script_api │ ├── battle.h │ ├── common.h │ ├── macros.h │ └── map.h ├── sparkle_script.h ├── star_rod_macros.h ├── types.h ├── ultra64.h ├── variables.h └── vars_access.h ├── manual ├── assets.md ├── gdb.md ├── gh-actions-secret.png ├── gh-actions.md ├── introduction.md ├── setup-dx.sh ├── setup.md └── star-rod.md ├── pyproject.toml ├── requirements.txt ├── requirements_extra.txt ├── run ├── src ├── 101b90_len_8f0.c ├── 23680.c ├── 25AF0.c ├── 38F00.c ├── 43F0.c ├── 5B320.c ├── 77480.c ├── 7B440.c ├── 7BB60.c ├── 7E9D0.c ├── 8a860_len_3f30.c ├── animation_script.h ├── animator.c ├── audio.h ├── audio │ ├── ambience.c │ ├── bgm_control.c │ ├── bgm_player.c │ ├── core.h │ ├── core │ │ ├── engine.c │ │ ├── pull_voice.c │ │ ├── reverb.c │ │ ├── syn_driver.c │ │ ├── system.c │ │ └── voice.c │ ├── load_banks.c │ ├── mseq_player.c │ ├── private.h │ ├── public.h │ ├── sfx_control.c │ ├── sfx_player.c │ └── snd_interface.c ├── background.c ├── background_gfx.c ├── battle │ ├── 16C8E0.c │ ├── 181810.c │ ├── 190A10.c │ ├── 190B20.c │ ├── 1A5830.c │ ├── action_cmd.c │ ├── action_cmd.h │ ├── action_cmd │ │ ├── air_lift.c │ │ ├── air_lift.h │ │ ├── air_raid.c │ │ ├── air_raid.h │ │ ├── body_slam.c │ │ ├── body_slam.h │ │ ├── bomb.c │ │ ├── bomb.h │ │ ├── break_free.c │ │ ├── break_free.h │ │ ├── common │ │ │ ├── MashCommandDraw.inc.c │ │ │ └── MashCommandFree.inc.c │ │ ├── dizzy_shell.c │ │ ├── dizzy_shell.h │ │ ├── fire_shell.c │ │ ├── fire_shell.h │ │ ├── flee.c │ │ ├── flee.h │ │ ├── hammer.c │ │ ├── hammer.h │ │ ├── hurricane.c │ │ ├── hurricane.h │ │ ├── jump.c │ │ ├── jump.h │ │ ├── mega_shock.c │ │ ├── mega_shock.h │ │ ├── power_shock.c │ │ ├── power_shock.h │ │ ├── smack.c │ │ ├── smack.h │ │ ├── spiny_surge.c │ │ ├── spiny_surge.h │ │ ├── spook.c │ │ ├── spook.h │ │ ├── squirt.c │ │ ├── squirt.h │ │ ├── stop_leech.c │ │ ├── stop_leech.h │ │ ├── three_chances.c │ │ ├── three_chances.h │ │ ├── tidal_wave.c │ │ ├── tidal_wave.h │ │ ├── unused_flee.c │ │ ├── unused_flee.h │ │ ├── unused_mash_a.c │ │ ├── unused_mash_a.h │ │ ├── whirlwind.c │ │ └── whirlwind.h │ ├── actor_api.c │ ├── actor_rendering.c │ ├── actors.c │ ├── actors.yaml │ ├── actors_jp.yaml │ ├── area │ │ ├── arn │ │ │ ├── actor │ │ │ │ ├── hyper_cleft.c │ │ │ │ ├── hyper_goomba.c │ │ │ │ ├── hyper_paragoomba.c │ │ │ │ ├── tubba_blubba.c │ │ │ │ └── tubbas_heart.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── arn_01.c │ │ │ │ ├── arn_02.c │ │ │ │ ├── arn_03.c │ │ │ │ ├── arn_04.c │ │ │ │ ├── arn_05.c │ │ │ │ └── arn_06.c │ │ ├── dgb │ │ │ ├── actor │ │ │ │ ├── clubba.c │ │ │ │ └── tubba_blubba.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── dgb_01.c │ │ │ │ ├── dgb_02.c │ │ │ │ ├── dgb_03.c │ │ │ │ ├── dgb_04.c │ │ │ │ └── dgb_05.c │ │ ├── dig │ │ │ ├── actor │ │ │ │ ├── bandit.c │ │ │ │ ├── fuzzy.c │ │ │ │ ├── koopa_troopa.c │ │ │ │ ├── monty_mole.c │ │ │ │ ├── pokey.c │ │ │ │ ├── red_shy_guy.c │ │ │ │ ├── tubba_blubba.c │ │ │ │ └── whacka.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ ├── script │ │ │ │ ├── dig_01.c │ │ │ │ ├── dig_02.c │ │ │ │ ├── dig_03.c │ │ │ │ ├── dig_04.c │ │ │ │ └── dig_05.c │ │ │ └── stage │ │ │ │ ├── dig_01.c │ │ │ │ ├── dig_02.c │ │ │ │ ├── dig_03.c │ │ │ │ ├── dig_04.c │ │ │ │ └── dig_05.c │ │ ├── flo │ │ │ ├── actor │ │ │ │ ├── amazy_dayzee.c │ │ │ │ ├── bzzap.c │ │ │ │ ├── crazee_dayzee.c │ │ │ │ ├── green_magikoopa.c │ │ │ │ ├── lakitu.c │ │ │ │ ├── medi_guy.c │ │ │ │ ├── red_magikoopa.c │ │ │ │ ├── ruff_puff.c │ │ │ │ ├── spiny.c │ │ │ │ ├── white_magikoopa.c │ │ │ │ └── yellow_magikoopa.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── flo_01.c │ │ │ │ ├── flo_01b.c │ │ │ │ ├── flo_01c.c │ │ │ │ ├── flo_02.c │ │ │ │ ├── flo_02b.c │ │ │ │ ├── flo_02c.c │ │ │ │ ├── flo_03.c │ │ │ │ ├── flo_04.c │ │ │ │ ├── flo_05.c │ │ │ │ └── flo_06.c │ │ ├── flo2 │ │ │ ├── actor │ │ │ │ ├── huff_n_puff.c │ │ │ │ ├── huff_n_puff_common.h │ │ │ │ ├── monty_mole_boss.c │ │ │ │ ├── spike.c │ │ │ │ └── tuff_puff.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── flo_01.c │ │ │ │ ├── flo_01b.c │ │ │ │ ├── flo_01c.c │ │ │ │ ├── flo_02.c │ │ │ │ ├── flo_02b.c │ │ │ │ ├── flo_02c.c │ │ │ │ ├── flo_03.c │ │ │ │ ├── flo_04.c │ │ │ │ ├── flo_05.c │ │ │ │ └── flo_06.c │ │ ├── hos │ │ │ ├── actor │ │ │ │ ├── ember.c │ │ │ │ ├── goombario_tutor.c │ │ │ │ └── magikoopa.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── hos_00.c │ │ │ │ ├── hos_01.c │ │ │ │ └── hos_02.c │ │ ├── isk_part_1 │ │ │ ├── actor │ │ │ │ ├── buzzy_beetle.c │ │ │ │ ├── pokey_mummy.c │ │ │ │ ├── stone_chomp.c │ │ │ │ └── swooper.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── isk_00.c │ │ │ │ ├── isk_01.c │ │ │ │ ├── isk_02.c │ │ │ │ ├── isk_02b.c │ │ │ │ ├── isk_02c.c │ │ │ │ ├── isk_03.c │ │ │ │ ├── isk_03b.c │ │ │ │ ├── isk_04.c │ │ │ │ ├── isk_05.c │ │ │ │ ├── isk_06.c │ │ │ │ ├── isk_06b.c │ │ │ │ ├── isk_07.c │ │ │ │ └── isk_08.c │ │ ├── isk_part_2 │ │ │ ├── actor │ │ │ │ ├── chain_chomp.c │ │ │ │ ├── tutankoopa.c │ │ │ │ └── tutankoopa_common.h │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── isk_00.c │ │ │ │ ├── isk_01.c │ │ │ │ ├── isk_02.c │ │ │ │ ├── isk_02b.c │ │ │ │ ├── isk_02c.c │ │ │ │ ├── isk_03.c │ │ │ │ ├── isk_03b.c │ │ │ │ ├── isk_04.c │ │ │ │ ├── isk_05.c │ │ │ │ ├── isk_06.c │ │ │ │ ├── isk_06b.c │ │ │ │ └── isk_07.c │ │ ├── iwa │ │ │ ├── actor │ │ │ │ ├── buzzar.c │ │ │ │ ├── cleft.c │ │ │ │ ├── monty_mole.c │ │ │ │ └── whacka.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── iwa_01.c │ │ │ │ ├── iwa_01b.c │ │ │ │ └── iwa_02.c │ │ ├── jan │ │ │ ├── actor │ │ │ │ ├── hurt_plant.c │ │ │ │ ├── jungle_fuzzy.c │ │ │ │ ├── m_bush.c │ │ │ │ ├── medi_guy.c │ │ │ │ ├── spear_guy.c │ │ │ │ └── spike_top.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── jan_00.c │ │ │ │ ├── jan_01.c │ │ │ │ ├── jan_01b.c │ │ │ │ ├── jan_02.c │ │ │ │ ├── jan_03.c │ │ │ │ ├── jan_03b.c │ │ │ │ ├── jan_04.c │ │ │ │ └── jan_04b.c │ │ ├── jan2 │ │ │ ├── actor │ │ │ │ ├── putrid_piranha.c │ │ │ │ └── white_magikoopa.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── jan_00.c │ │ │ │ ├── jan_01.c │ │ │ │ ├── jan_01b.c │ │ │ │ ├── jan_02.c │ │ │ │ ├── jan_03.c │ │ │ │ ├── jan_03b.c │ │ │ │ ├── jan_04.c │ │ │ │ └── jan_04b.c │ │ ├── kgr │ │ │ ├── actor │ │ │ │ └── fuzzipede.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ └── kgr_01.c │ │ ├── kkj │ │ │ ├── actor │ │ │ │ └── kammy_koopa.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ └── kpa_05.c │ │ ├── kmr_part_1 │ │ │ ├── actor │ │ │ │ ├── goomba.c │ │ │ │ ├── paragoomba.c │ │ │ │ └── spiked_goomba.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── kmr_02.c │ │ │ │ ├── kmr_03.c │ │ │ │ ├── kmr_04.c │ │ │ │ ├── kmr_05.c │ │ │ │ └── kmr_06.c │ │ ├── kmr_part_2 │ │ │ ├── actor │ │ │ │ ├── blue_goomba_1.c │ │ │ │ ├── blue_goomba_2.c │ │ │ │ ├── goomba_bros_common.h │ │ │ │ ├── goomba_king.c │ │ │ │ ├── goomba_king_common.h │ │ │ │ ├── goomnut_tree.c │ │ │ │ ├── red_goomba_1.c │ │ │ │ └── red_goomba_2.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── kmr_02.c │ │ │ │ ├── kmr_03.c │ │ │ │ ├── kmr_04.c │ │ │ │ ├── kmr_05.c │ │ │ │ └── kmr_06.c │ │ ├── kmr_part_3 │ │ │ ├── actor │ │ │ │ ├── egg_jr_troopa.c │ │ │ │ ├── final_jr_troopa.c │ │ │ │ ├── jr_troopa.c │ │ │ │ ├── mage_jr_troopa.c │ │ │ │ ├── para_jr_troopa.c │ │ │ │ ├── paragoomba.c │ │ │ │ ├── spiked_para_jr_troopa.c │ │ │ │ ├── tutorial_paragoomba.c │ │ │ │ └── tutorial_spiked_goomba.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── kmr_02.c │ │ │ │ ├── kmr_03.c │ │ │ │ ├── kmr_04.c │ │ │ │ ├── kmr_05b.c │ │ │ │ ├── kmr_06.c │ │ │ │ ├── kpa_13.c │ │ │ │ ├── mac_01.c │ │ │ │ ├── mim_01.c │ │ │ │ ├── nok_01.c │ │ │ │ └── sam_01.c │ │ ├── kpa │ │ │ ├── actor │ │ │ │ ├── bony_beetle.c │ │ │ │ ├── dry_bones.c │ │ │ │ ├── ember.c │ │ │ │ ├── hammer_bro.c │ │ │ │ ├── koopatrol.c │ │ │ │ └── magikoopa.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── kpa_01.c │ │ │ │ ├── kpa_01b.c │ │ │ │ ├── kpa_02.c │ │ │ │ ├── kpa_03.c │ │ │ │ ├── kpa_04.c │ │ │ │ ├── kpa_04b.c │ │ │ │ ├── kpa_04c.c │ │ │ │ ├── kpa_05.c │ │ │ │ ├── kpa_07.c │ │ │ │ ├── kpa_08.c │ │ │ │ ├── kpa_09.c │ │ │ │ ├── kpa_11.c │ │ │ │ ├── kpa_13.c │ │ │ │ └── kpa_14.c │ │ ├── kpa2 │ │ │ ├── actor │ │ │ │ ├── final_bowser_1.c │ │ │ │ ├── final_bowser_2.c │ │ │ │ ├── hallway_bowser.c │ │ │ │ ├── intro_bowser.c │ │ │ │ └── unused_bowser.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── kkj_01.c │ │ │ │ ├── kkj_02.c │ │ │ │ └── kpa_01.c │ │ ├── kpa3 │ │ │ ├── actor │ │ │ │ ├── anti_guy.c │ │ │ │ └── duplighost.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ └── kpa_01.c │ │ ├── kpa4 │ │ │ ├── actor │ │ │ │ ├── bombshell_bill.c │ │ │ │ ├── bombshell_blaster.c │ │ │ │ ├── koopatrol.c │ │ │ │ └── magikoopa.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── kpa_01.c │ │ │ │ ├── kpa_01b.c │ │ │ │ ├── kpa_02.c │ │ │ │ ├── kpa_03.c │ │ │ │ ├── kpa_04.c │ │ │ │ ├── kpa_04b.c │ │ │ │ ├── kpa_04c.c │ │ │ │ ├── kpa_05.c │ │ │ │ ├── kpa_07.c │ │ │ │ ├── kpa_08.c │ │ │ │ ├── kpa_09.c │ │ │ │ ├── kpa_11.c │ │ │ │ ├── kpa_13.c │ │ │ │ └── kpa_14.c │ │ ├── kzn │ │ │ ├── actor │ │ │ │ ├── lava_bubble.c │ │ │ │ ├── medi_guy.c │ │ │ │ ├── putrid_piranha.c │ │ │ │ ├── red_magikoopa.c │ │ │ │ ├── spike_top.c │ │ │ │ └── white_magikoopa.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── kzn_01.c │ │ │ │ ├── kzn_01b.c │ │ │ │ ├── kzn_02.c │ │ │ │ ├── kzn_04.c │ │ │ │ ├── kzn_04b.c │ │ │ │ ├── kzn_04c.c │ │ │ │ └── kzn_05.c │ │ ├── kzn2 │ │ │ ├── actor │ │ │ │ ├── boss_common.h │ │ │ │ ├── lava_bud.c │ │ │ │ ├── lava_piranha.c │ │ │ │ ├── petit_piranha.c │ │ │ │ └── petit_piranha_bomb.c │ │ │ ├── anim │ │ │ │ ├── anim_shatter_ground.inc.c │ │ │ │ ├── lava_piranha_anim.c │ │ │ │ ├── skel_extra_vine.inc.c │ │ │ │ ├── skel_main_vine.inc.c │ │ │ │ ├── skel_side_vine.inc.c │ │ │ │ └── unused_gfx.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── kzn_01.c │ │ │ │ ├── kzn_01b.c │ │ │ │ ├── kzn_02.c │ │ │ │ ├── kzn_04.c │ │ │ │ ├── kzn_04b.c │ │ │ │ ├── kzn_04c.c │ │ │ │ └── kzn_05.c │ │ ├── mac │ │ │ ├── actor │ │ │ │ ├── chan.c │ │ │ │ ├── lee.c │ │ │ │ ├── lee_bombette.inc.c │ │ │ │ ├── lee_bow.inc.c │ │ │ │ ├── lee_goombario.inc.c │ │ │ │ ├── lee_kooper.inc.c │ │ │ │ ├── lee_lakilester.inc.c │ │ │ │ ├── lee_parakarry.inc.c │ │ │ │ ├── lee_sushie.inc.c │ │ │ │ ├── lee_watt.inc.c │ │ │ │ ├── master1.c │ │ │ │ ├── master2.c │ │ │ │ └── master3.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── mac_01.c │ │ │ │ └── mac_02.c │ │ ├── mim │ │ │ ├── actor │ │ │ │ ├── bzzap.c │ │ │ │ ├── forest_fuzzy.c │ │ │ │ └── piranha_plant.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ └── mim_01.c │ │ ├── nok │ │ │ ├── actor │ │ │ │ ├── fuzzy.c │ │ │ │ ├── goomba.c │ │ │ │ ├── kent_c_koopa.c │ │ │ │ ├── koopa_troopa.c │ │ │ │ ├── paragoomba.c │ │ │ │ ├── paratroopa.c │ │ │ │ └── spiked_goomba.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── nok_01.c │ │ │ │ ├── nok_02.c │ │ │ │ ├── nok_03.c │ │ │ │ └── nok_04.c │ │ ├── omo │ │ │ ├── actor │ │ │ │ ├── anti_guy.c │ │ │ │ ├── blue_shy_guy.c │ │ │ │ ├── green_shy_guy.c │ │ │ │ ├── groove_guy.c │ │ │ │ ├── medi_guy.c │ │ │ │ ├── pink_shy_guy.c │ │ │ │ ├── pyro_guy.c │ │ │ │ ├── red_shy_guy.c │ │ │ │ ├── sky_guy.c │ │ │ │ ├── spy_guy.c │ │ │ │ └── yellow_shy_guy.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── omo_01.c │ │ │ │ ├── omo_02.c │ │ │ │ ├── omo_03.c │ │ │ │ ├── omo_03b.c │ │ │ │ ├── omo_04.c │ │ │ │ ├── omo_05.c │ │ │ │ ├── omo_05b.c │ │ │ │ ├── omo_06.c │ │ │ │ └── omo_07.c │ │ ├── omo2 │ │ │ ├── actor │ │ │ │ ├── animation.inc.c │ │ │ │ ├── boss_common.h │ │ │ │ ├── general_guy.c │ │ │ │ ├── light_bulb.c │ │ │ │ └── toy_tank.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ └── omo_07.c │ │ ├── omo2_1 │ │ │ └── actor │ │ │ │ └── shy_squad.c │ │ ├── omo2_2 │ │ │ └── actor │ │ │ │ └── stilt_guy.c │ │ ├── omo2_3 │ │ │ └── actor │ │ │ │ └── shy_stack.c │ │ ├── omo2_4 │ │ │ └── actor │ │ │ │ └── signal_guy.c │ │ ├── omo2_5 │ │ │ └── actor │ │ │ │ └── shy_squad_redux.c │ │ ├── omo2_6 │ │ │ └── actor │ │ │ │ └── shy_squad_stub.c │ │ ├── omo3 │ │ │ ├── actor │ │ │ │ ├── big_lantern_ghost.c │ │ │ │ ├── clubba.c │ │ │ │ ├── fuzzy.c │ │ │ │ ├── goomba.c │ │ │ │ ├── hammer_bro.c │ │ │ │ ├── koopatrol.c │ │ │ │ ├── pokey.c │ │ │ │ └── red_shy_guy.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── omo_01.c │ │ │ │ ├── omo_02.c │ │ │ │ ├── omo_03.c │ │ │ │ ├── omo_03b.c │ │ │ │ ├── omo_04.c │ │ │ │ ├── omo_05.c │ │ │ │ ├── omo_05b.c │ │ │ │ ├── omo_06.c │ │ │ │ └── omo_07.c │ │ ├── pra │ │ │ ├── actor │ │ │ │ ├── albino_dino.c │ │ │ │ ├── gray_magikoopa.c │ │ │ │ ├── green_magikoopa.c │ │ │ │ ├── red_magikoopa.c │ │ │ │ ├── swoopula.c │ │ │ │ ├── white_clubba.c │ │ │ │ ├── white_magikoopa.c │ │ │ │ └── yellow_magikoopa.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── pra_01.c │ │ │ │ ├── pra_02.c │ │ │ │ ├── pra_03.c │ │ │ │ ├── pra_03b.c │ │ │ │ ├── pra_03c.c │ │ │ │ └── pra_04.c │ │ ├── pra2 │ │ │ ├── actor │ │ │ │ ├── crystal_bit.c │ │ │ │ ├── crystal_king.c │ │ │ │ └── crystal_king_common.h │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ └── sam_04.c │ │ ├── pra3 │ │ │ ├── actor │ │ │ │ ├── duplighost.c │ │ │ │ ├── gray_magikoopa.c │ │ │ │ ├── red_magikoopa.c │ │ │ │ ├── swoopula.c │ │ │ │ └── white_clubba.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── pra_01.c │ │ │ │ ├── pra_02.c │ │ │ │ ├── pra_03.c │ │ │ │ ├── pra_03b.c │ │ │ │ ├── pra_03c.c │ │ │ │ └── pra_04.c │ │ ├── sam │ │ │ ├── actor │ │ │ │ ├── duplighost.c │ │ │ │ ├── frost_piranha.c │ │ │ │ ├── gray_magikoopa.c │ │ │ │ ├── gulpit.c │ │ │ │ ├── gulpit_rocks.c │ │ │ │ └── white_clubba.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── sam_01.c │ │ │ │ ├── sam_02.c │ │ │ │ ├── sam_02b.c │ │ │ │ ├── sam_02c.c │ │ │ │ ├── sam_02d.c │ │ │ │ └── sam_03.c │ │ ├── sam2 │ │ │ ├── actor │ │ │ │ ├── gray_magikoopa.c │ │ │ │ ├── monstar.c │ │ │ │ └── paragoomba.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ ├── dlist.c │ │ │ ├── stage │ │ │ │ ├── sam_01.c │ │ │ │ ├── sam_02.c │ │ │ │ ├── sam_02b.c │ │ │ │ ├── sam_02c.c │ │ │ │ ├── sam_02d.c │ │ │ │ └── sam_03.c │ │ │ └── vtx.c │ │ ├── sbk │ │ │ ├── actor │ │ │ │ ├── bandit.c │ │ │ │ └── pokey.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ └── sbk_02.c │ │ ├── tik │ │ │ ├── actor │ │ │ │ ├── buzzy_beetle.c │ │ │ │ ├── dark_koopa.c │ │ │ │ ├── dark_paratroopa.c │ │ │ │ ├── gloomba.c │ │ │ │ ├── paragloomba.c │ │ │ │ ├── spike_top.c │ │ │ │ ├── spiked_gloomba.c │ │ │ │ └── spiny.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── tik_01.c │ │ │ │ ├── tik_02.c │ │ │ │ ├── tik_03.c │ │ │ │ ├── tik_04.c │ │ │ │ └── tik_05.c │ │ ├── tik2 │ │ │ ├── actor │ │ │ │ ├── blooper.c │ │ │ │ ├── blooper_baby.c │ │ │ │ ├── electro_blooper.c │ │ │ │ └── super_blooper.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── tik_01.c │ │ │ │ ├── tik_02.c │ │ │ │ ├── tik_03.c │ │ │ │ ├── tik_04.c │ │ │ │ └── tik_05.c │ │ ├── tik3 │ │ │ ├── actor │ │ │ │ ├── swooper.c │ │ │ │ └── swoopula.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── tik_01.c │ │ │ │ ├── tik_02.c │ │ │ │ ├── tik_03.c │ │ │ │ ├── tik_04.c │ │ │ │ └── tik_05.c │ │ ├── trd_part_1 │ │ │ ├── actor │ │ │ │ ├── bill_blaster.c │ │ │ │ ├── bob_omb.c │ │ │ │ ├── bullet_bill.c │ │ │ │ ├── koopa_troopa.c │ │ │ │ └── paratroopa.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── trd_00.c │ │ │ │ ├── trd_01.c │ │ │ │ ├── trd_02.c │ │ │ │ ├── trd_02b.c │ │ │ │ ├── trd_02c.c │ │ │ │ ├── trd_02d.c │ │ │ │ ├── trd_03.c │ │ │ │ ├── trd_04.c │ │ │ │ ├── trd_05.c │ │ │ │ ├── trd_05b.c │ │ │ │ ├── trd_05c.c │ │ │ │ ├── trd_05d.c │ │ │ │ ├── trd_05e.c │ │ │ │ └── trd_05f.c │ │ ├── trd_part_2 │ │ │ ├── actor │ │ │ │ ├── boss.h │ │ │ │ ├── common_koopa_bros.inc.c │ │ │ │ ├── fake_bowser.c │ │ │ │ ├── koopa_bros_black.c │ │ │ │ ├── koopa_bros_green.c │ │ │ │ ├── koopa_bros_red.c │ │ │ │ └── koopa_bros_yellow.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ │ ├── trd_00.c │ │ │ │ ├── trd_01.c │ │ │ │ ├── trd_02.c │ │ │ │ ├── trd_02b.c │ │ │ │ ├── trd_03.c │ │ │ │ ├── trd_04.c │ │ │ │ ├── trd_05.c │ │ │ │ ├── trd_05b.c │ │ │ │ ├── trd_05c.c │ │ │ │ ├── trd_05d.c │ │ │ │ ├── trd_05e.c │ │ │ │ └── trd_05f.c │ │ └── trd_part_3 │ │ │ ├── actor │ │ │ └── eldstar.c │ │ │ ├── area.c │ │ │ ├── area.h │ │ │ └── stage │ │ │ └── nok_01.c │ ├── battle.cpp │ ├── battle.h │ ├── battle_menu.h │ ├── battle_names.h │ ├── battle_tables.h │ ├── btl_states_actions.c │ ├── btl_states_menus.c │ ├── camera.c │ ├── common │ │ ├── actor │ │ │ ├── albino_dino.inc.c │ │ │ ├── amazy_dayzee.inc.c │ │ │ ├── anti_guy.inc.c │ │ │ ├── bandit.inc.c │ │ │ ├── bill_blaster.inc.c │ │ │ ├── blue_shy_guy.inc.c │ │ │ ├── bob_omb.inc.c │ │ │ ├── bony_beetle.inc.c │ │ │ ├── bullet_bill.inc.c │ │ │ ├── buzzy_beetle.inc.c │ │ │ ├── bzzap.inc.c │ │ │ ├── cleft.inc.c │ │ │ ├── clubba.inc.c │ │ │ ├── crazee_dayzee.inc.c │ │ │ ├── dark_koopa.inc.c │ │ │ ├── dark_paratroopa.inc.c │ │ │ ├── dry_bones.inc.c │ │ │ ├── duplighost.inc.c │ │ │ ├── duplighost │ │ │ │ ├── ghost_bombette.inc.c │ │ │ │ ├── ghost_bow.inc.c │ │ │ │ ├── ghost_goombario.inc.c │ │ │ │ ├── ghost_kooper.inc.c │ │ │ │ ├── ghost_lakilester.inc.c │ │ │ │ ├── ghost_parakarry.inc.c │ │ │ │ ├── ghost_sushie.inc.c │ │ │ │ └── ghost_watt.inc.c │ │ │ ├── ember.inc.c │ │ │ ├── forest_fuzzy.inc.c │ │ │ ├── frost_piranha.inc.c │ │ │ ├── fuzzy.inc.c │ │ │ ├── gloomba.inc.c │ │ │ ├── goomba.inc.c │ │ │ ├── gray_magikoopa.inc.c │ │ │ ├── green_magikoopa.inc.c │ │ │ ├── green_shy_guy.inc.c │ │ │ ├── groove_guy.inc.c │ │ │ ├── gulpit.inc.c │ │ │ ├── gulpit_rocks.inc.c │ │ │ ├── hammer_bro.inc.c │ │ │ ├── hurt_plant.inc.c │ │ │ ├── hyper_cleft.inc.c │ │ │ ├── hyper_goomba.inc.c │ │ │ ├── hyper_paragoomba.inc.c │ │ │ ├── jungle_fuzzy.inc.c │ │ │ ├── kmr_part_1 │ │ │ │ ├── goomba_family.hpp │ │ │ │ └── goomba_family.inc.cpp │ │ │ ├── koopa_troopa.inc.c │ │ │ ├── koopatrol.inc.c │ │ │ ├── lakitu.inc.c │ │ │ ├── lava_bubble.inc.c │ │ │ ├── m_bush.inc.c │ │ │ ├── magikoopa.inc.c │ │ │ ├── medi_guy.inc.c │ │ │ ├── monty_mole.inc.c │ │ │ ├── paragloomba.inc.c │ │ │ ├── paragoomba.inc.c │ │ │ ├── paratroopa.inc.c │ │ │ ├── pink_shy_guy.inc.c │ │ │ ├── piranha_plant.inc.c │ │ │ ├── pokey.inc.c │ │ │ ├── pokey_mummy.inc.c │ │ │ ├── putrid_piranha.inc.c │ │ │ ├── pyro_guy.inc.c │ │ │ ├── red_magikoopa.inc.c │ │ │ ├── red_shy_guy.inc.c │ │ │ ├── ruff_puff.inc.c │ │ │ ├── shy_guy_base.inc.c │ │ │ ├── sky_guy.inc.c │ │ │ ├── slot_machine.inc.c │ │ │ ├── spear_guy.inc.c │ │ │ ├── spike_top.inc.c │ │ │ ├── spiked_gloomba.inc.c │ │ │ ├── spiked_goomba.inc.c │ │ │ ├── spiny.inc.c │ │ │ ├── spy_guy.inc.c │ │ │ ├── stone_chomp.inc.c │ │ │ ├── swooper.inc.c │ │ │ ├── swoopula.inc.c │ │ │ ├── whacka.inc.c │ │ │ ├── white_clubba.inc.c │ │ │ ├── white_magikoopa.inc.c │ │ │ ├── yellow_magikoopa.inc.c │ │ │ └── yellow_shy_guy.inc.c │ │ ├── move │ │ │ ├── HammerSupport.inc.c │ │ │ ├── ItemRefund.inc.c │ │ │ ├── JumpSupport.inc.c │ │ │ ├── StarBeamSupport.inc.c │ │ │ ├── StarPowerSupport.inc.c │ │ │ └── UseItem.inc.c │ │ └── stage │ │ │ ├── area_arn │ │ │ ├── arn_01.inc.c │ │ │ ├── arn_02.inc.c │ │ │ ├── arn_03.inc.c │ │ │ ├── arn_04.inc.c │ │ │ ├── arn_05.inc.c │ │ │ └── arn_06.inc.c │ │ │ ├── area_dgb │ │ │ ├── dgb_01.inc.c │ │ │ ├── dgb_02.inc.c │ │ │ ├── dgb_03.inc.c │ │ │ ├── dgb_04.inc.c │ │ │ └── dgb_05.inc.c │ │ │ ├── area_flo │ │ │ ├── flo_01.inc.c │ │ │ ├── flo_01b.inc.c │ │ │ ├── flo_01c.inc.c │ │ │ ├── flo_02.inc.c │ │ │ ├── flo_02b.inc.c │ │ │ ├── flo_02c.inc.c │ │ │ ├── flo_03.inc.c │ │ │ ├── flo_04.inc.c │ │ │ ├── flo_05.inc.c │ │ │ └── flo_06.inc.c │ │ │ ├── area_hos │ │ │ ├── hos_00.inc.c │ │ │ ├── hos_01.inc.c │ │ │ └── hos_02.inc.c │ │ │ ├── area_isk │ │ │ ├── isk_00.inc.c │ │ │ ├── isk_01.inc.c │ │ │ ├── isk_02.inc.c │ │ │ ├── isk_02b.inc.c │ │ │ ├── isk_02c.inc.c │ │ │ ├── isk_03.inc.c │ │ │ ├── isk_03b.inc.c │ │ │ ├── isk_04.inc.c │ │ │ ├── isk_05.inc.c │ │ │ ├── isk_06.inc.c │ │ │ ├── isk_06b.inc.c │ │ │ ├── isk_07.inc.c │ │ │ └── isk_08.inc.c │ │ │ ├── area_iwa │ │ │ ├── iwa_01.inc.c │ │ │ ├── iwa_01b.inc.c │ │ │ └── iwa_02.inc.c │ │ │ ├── area_jan │ │ │ ├── jan_00.inc.c │ │ │ ├── jan_01.inc.c │ │ │ ├── jan_01b.inc.c │ │ │ ├── jan_02.inc.c │ │ │ ├── jan_03.inc.c │ │ │ ├── jan_03b.inc.c │ │ │ ├── jan_04.inc.c │ │ │ └── jan_04b.inc.c │ │ │ ├── area_kgr │ │ │ └── kgr_01.inc.c │ │ │ ├── area_kkj │ │ │ ├── kkj_01.inc.c │ │ │ └── kkj_02.inc.c │ │ │ ├── area_kmr │ │ │ ├── kmr_02.inc.c │ │ │ ├── kmr_03.inc.c │ │ │ ├── kmr_04.inc.c │ │ │ ├── kmr_05.inc.c │ │ │ ├── kmr_05b.inc.c │ │ │ └── kmr_06.inc.c │ │ │ ├── area_kpa │ │ │ ├── kpa_01.inc.c │ │ │ ├── kpa_01b.inc.c │ │ │ ├── kpa_02.inc.c │ │ │ ├── kpa_03.inc.c │ │ │ ├── kpa_04.inc.c │ │ │ ├── kpa_04b.inc.c │ │ │ ├── kpa_04c.inc.c │ │ │ ├── kpa_05.inc.c │ │ │ ├── kpa_07.inc.c │ │ │ ├── kpa_08.inc.c │ │ │ ├── kpa_09.inc.c │ │ │ ├── kpa_11.inc.c │ │ │ ├── kpa_13.inc.c │ │ │ └── kpa_14.inc.c │ │ │ ├── area_kzn │ │ │ ├── Decorations.inc.c │ │ │ ├── kzn_01.inc.c │ │ │ ├── kzn_01b.inc.c │ │ │ ├── kzn_02.inc.c │ │ │ ├── kzn_04.inc.c │ │ │ ├── kzn_04b.inc.c │ │ │ ├── kzn_04c.inc.c │ │ │ └── kzn_05.inc.c │ │ │ ├── area_mac │ │ │ ├── mac_01.inc.c │ │ │ └── mac_02.inc.c │ │ │ ├── area_mim │ │ │ └── mim_01.inc.c │ │ │ ├── area_nok │ │ │ ├── nok_01.inc.c │ │ │ ├── nok_02.inc.c │ │ │ ├── nok_03.inc.c │ │ │ └── nok_04.inc.c │ │ │ ├── area_omo │ │ │ ├── omo_01.inc.c │ │ │ ├── omo_02.inc.c │ │ │ ├── omo_03.inc.c │ │ │ ├── omo_03b.inc.c │ │ │ ├── omo_04.inc.c │ │ │ ├── omo_05.inc.c │ │ │ ├── omo_05b.inc.c │ │ │ ├── omo_06.inc.c │ │ │ └── omo_07.inc.c │ │ │ ├── area_pra │ │ │ ├── pra_01.inc.c │ │ │ ├── pra_02.inc.c │ │ │ ├── pra_03.inc.c │ │ │ ├── pra_03b.inc.c │ │ │ ├── pra_03c.inc.c │ │ │ └── pra_04.inc.c │ │ │ ├── area_sam │ │ │ ├── sam_01.inc.c │ │ │ ├── sam_02.inc.c │ │ │ ├── sam_02b.inc.c │ │ │ ├── sam_02c.inc.c │ │ │ ├── sam_02d.inc.c │ │ │ ├── sam_03.inc.c │ │ │ └── sam_04.inc.c │ │ │ ├── area_sbk │ │ │ └── sbk_02.inc.c │ │ │ ├── area_tik │ │ │ ├── tik_01.inc.c │ │ │ ├── tik_02.inc.c │ │ │ ├── tik_03.inc.c │ │ │ ├── tik_04.inc.c │ │ │ └── tik_05.inc.c │ │ │ ├── area_trd │ │ │ ├── trd_00.inc.c │ │ │ ├── trd_01.inc.c │ │ │ ├── trd_02.inc.c │ │ │ ├── trd_02b.inc.c │ │ │ ├── trd_02c.inc.c │ │ │ ├── trd_02d.inc.c │ │ │ ├── trd_03.inc.c │ │ │ ├── trd_04.inc.c │ │ │ ├── trd_05.inc.c │ │ │ ├── trd_05b.inc.c │ │ │ ├── trd_05c.inc.c │ │ │ ├── trd_05d.inc.c │ │ │ ├── trd_05e.inc.c │ │ │ └── trd_05f.inc.c │ │ │ └── lib │ │ │ ├── BeachEffects.inc.c │ │ │ ├── DripVolumes.inc.c │ │ │ ├── MovingClouds.inc.c │ │ │ ├── RandomFlowers.inc.c │ │ │ ├── Snowflakes.inc.c │ │ │ ├── TexturePanner.inc.c │ │ │ └── WaterEffects.inc.c │ ├── dmg_item.c │ ├── dmg_partner.c │ ├── dmg_player.c │ ├── entity_model_icons.c │ ├── menu_moves.c │ ├── menu_strats.c │ ├── move │ │ ├── hammer │ │ │ ├── attack.c │ │ │ ├── auto_smash.c │ │ │ ├── d_down_pound.c │ │ │ ├── hammer_charge_0.c │ │ │ ├── hammer_charge_1.c │ │ │ ├── hammer_charge_2.c │ │ │ ├── hammer_throw.c │ │ │ ├── mega_quake.c │ │ │ ├── mega_smash.c │ │ │ ├── power_quake.c │ │ │ ├── power_smash.c │ │ │ ├── quake_hammer.c │ │ │ ├── shell_crack.c │ │ │ ├── shrink_smash.c │ │ │ ├── spin_smash.c │ │ │ └── super_smash.c │ │ ├── item │ │ │ ├── coconut.c │ │ │ ├── dizzy_dial.c │ │ │ ├── dried_shroom.c │ │ │ ├── dusty_hammer.c │ │ │ ├── egg_missile.c │ │ │ ├── electro_pop.c │ │ │ ├── fire_flower.c │ │ │ ├── food.c │ │ │ ├── fright_jar.c │ │ │ ├── hustle_drink.c │ │ │ ├── insecticide_herb.c │ │ │ ├── life_shroom.c │ │ │ ├── mushroom.c │ │ │ ├── mystery.c │ │ │ ├── pebble.c │ │ │ ├── please_come_back.c │ │ │ ├── pow_block.c │ │ │ ├── repel_gel.c │ │ │ ├── shooting_star.c │ │ │ ├── sleepy_sheep.c │ │ │ ├── snowman_doll.c │ │ │ ├── stone_cap.c │ │ │ ├── stop_watch.c │ │ │ ├── strange_cake.c │ │ │ ├── super_soda.c │ │ │ ├── tasty_tonic.c │ │ │ ├── thunder_bolt.c │ │ │ ├── thunder_rage.c │ │ │ ├── ultra_shroom.c │ │ │ ├── unknown_item.c │ │ │ └── volt_shroom.c │ │ ├── jump │ │ │ ├── attack.c │ │ │ ├── auto_jump.c │ │ │ ├── auto_multibounce.c │ │ │ ├── d_down_jump.c │ │ │ ├── demo_power_bounce.c │ │ │ ├── dizzy_stomp.c │ │ │ ├── earthquake_jump.c │ │ │ ├── jump_charge_0.c │ │ │ ├── jump_charge_1.c │ │ │ ├── jump_charge_2.c │ │ │ ├── mega_jump.c │ │ │ ├── multibounce.c │ │ │ ├── power_bounce.c │ │ │ ├── power_jump.c │ │ │ ├── shrink_stomp.c │ │ │ ├── sleep_stomp.c │ │ │ └── super_jump.c │ │ └── star_power │ │ │ ├── chill_out.c │ │ │ ├── focus.c │ │ │ ├── lullaby.c │ │ │ ├── peach_beam.c │ │ │ ├── peach_focus.c │ │ │ ├── peach_focus_alt.c │ │ │ ├── refresh.c │ │ │ ├── smooch.c │ │ │ ├── star_beam.c │ │ │ ├── star_storm.c │ │ │ ├── time_out.c │ │ │ └── up_and_away.c │ ├── partner │ │ ├── bombette.c │ │ ├── bow.c │ │ ├── goombario.c │ │ ├── goompa.c │ │ ├── kooper.c │ │ ├── lakilester.c │ │ ├── parakarry.c │ │ ├── sushie.c │ │ ├── twink.c │ │ └── watt.c │ ├── partner_dma.c │ ├── player_events.c │ ├── popup_messages.c │ ├── stage_names.h │ ├── standard_events.c │ ├── states │ │ ├── change_partner.c │ │ ├── defeat.c │ │ ├── defend.c │ │ ├── end_battle.c │ │ ├── end_demo.c │ │ ├── end_training.c │ │ ├── enemy_first_strike.c │ │ ├── enemy_move.c │ │ ├── enemy_next.c │ │ ├── level_up.c │ │ ├── menu_partner.c │ │ ├── menu_peach.c │ │ ├── menu_player.c │ │ ├── menu_twink.c │ │ ├── partner_first_strike.c │ │ ├── partner_move.c │ │ ├── partner_turn_begin.c │ │ ├── partner_turn_end.c │ │ ├── player_first_strike.c │ │ ├── player_move.c │ │ ├── player_turn_begin.c │ │ ├── player_turn_end.c │ │ ├── prepare_menu.c │ │ ├── run_away.c │ │ ├── select_target.c │ │ ├── start_battle.c │ │ ├── states.h │ │ ├── states_flowchart.md │ │ ├── switch_to_partner.c │ │ ├── switch_to_player.c │ │ ├── turn_begin.c │ │ ├── turn_end.c │ │ ├── turn_transfer.c │ │ └── victory.c │ ├── use_items.c │ ├── use_moves.c │ └── use_star_powers.c ├── battle_heap_create_obfuscated.c ├── battle_hud_scripts.h ├── battle_ui_gfx.c ├── boot │ ├── entry_point.s │ └── ipl3_boot.s ├── cam_main.c ├── cam_math.c ├── cam_mode_interp.c ├── cam_mode_minimal.c ├── cam_mode_no_interp.c ├── cam_mode_unused_ahead.c ├── cam_mode_unused_confined.c ├── cam_mode_unused_leading.c ├── cam_mode_unused_radial.c ├── cam_mode_zone_interp.c ├── charset │ ├── charset.c │ └── charset.h ├── collision.c ├── collision.h ├── common │ ├── ActorJumpToPos.inc.c │ ├── AddFP.inc.c │ ├── AddHP.inc.c │ ├── AdvanceBuffer.inc.c │ ├── CalculateArcsinDeg.inc.c │ ├── CanPlayerLoseAction.inc.c │ ├── CompareFloats.inc.c │ ├── CosInterpMinMax.inc.c │ ├── DisableRandomAbility.inc.c │ ├── Dist3D.inc.c │ ├── FadeBackgroundDarken.inc.c │ ├── FadeBackgroundLighten.inc.c │ ├── FoliageTransform.inc.c │ ├── GetIconBrightnessForAngle.inc.c │ ├── GetItemEntityPosition.inc.c │ ├── GetJumpHammerCharge.inc.c │ ├── GetLastEventType.inc.c │ ├── GetPlayerHpPercent.inc.c │ ├── GetSelectedMoveID.inc.c │ ├── IsAOrBPressed.inc.c │ ├── ItemEntityJumpToPos.inc.c │ ├── MakeSun.inc.c │ ├── MediGuySpriteRotationFunc.inc.c │ ├── PlayLavaBubbleFlightSound.inc.c │ ├── RemoveChillOut.inc.c │ ├── SetAngleClamped.inc.c │ ├── SetBackgroundAlpha.inc.c │ ├── SetBowserFireBreathScales.inc.c │ ├── SetDemoBattleBeginDelay.inc.c │ ├── SetNpcPosYaw.inc.c │ ├── SetPlayerStatusPosYaw.inc.c │ ├── SetSpinSmashable.inc.c │ ├── ShrinkActor.inc.c │ ├── SpawnEnemyDrainFX.inc.c │ ├── SpitInk.inc.c │ ├── StarRodAppearEffect.inc.c │ ├── StarRodPowerUpEffect.inc.c │ ├── StartRumbleWithParams.inc.c │ ├── UnkActorPosFunc.inc.c │ ├── UnkBackgroundFunc3.inc.c │ ├── UnkEffect6FFunc.inc.c │ ├── UnkFloatFunc005.inc.c │ ├── UnkLightningBoltFxFunc1.inc.c │ ├── UpdateEnchantedBowserColors.inc.c │ ├── battle │ │ ├── CheckMagikoopaCastTarget.inc.c │ │ ├── CheckPlayerCanLoseCommand.inc.c │ │ ├── ChompChainSupport.inc.c │ │ └── SetAbsoluteStatusOffsets.inc.c │ └── foliage.inc.c ├── crash_screen.c ├── create_audio_system_obfuscated.c ├── curtains.c ├── draw_box.c ├── draw_img_util.c ├── dx │ ├── backtrace.c │ ├── backtrace.h │ ├── config.h │ ├── debug_menu.c │ ├── debug_menu.h │ ├── profiling.c │ ├── profiling.h │ ├── utils.c │ ├── utils.h │ ├── versioning.c │ └── versioning.h ├── effect_shims.yaml ├── effect_utils.c ├── effects.c ├── effects.yaml ├── effects │ ├── attack_result_text.c │ ├── aura.c │ ├── balloon.c │ ├── big_smoke_puff.c │ ├── big_snowflakes.c │ ├── blast.c │ ├── bombette_breaking.c │ ├── breaking_junk.c │ ├── bulb_glow.c │ ├── butterflies.c │ ├── chapter_change.c │ ├── chomp_drop.c │ ├── cloud_puff.c │ ├── cloud_trail.c │ ├── cold_breath.c │ ├── confetti.c │ ├── damage_indicator.c │ ├── damage_stars.c │ ├── debuff.c │ ├── disable_x.c │ ├── drop_leaves.c │ ├── dust.c │ ├── effect_3D.c │ ├── effect_46.c │ ├── effect_63.c │ ├── effect_65.c │ ├── effect_75.c │ ├── effect_86.c │ ├── embers.c │ ├── emote.c │ ├── ending_decals.c │ ├── energy_in_out.c │ ├── energy_orb_wave.c │ ├── energy_shockwave.c │ ├── explosion.c │ ├── falling_leaves.c │ ├── fire_breath.c │ ├── fire_flower.c │ ├── firework.c │ ├── firework_rocket.c │ ├── flame.c │ ├── flashing_box_shockwave.c │ ├── floating_cloud_puff.c │ ├── floating_flower.c │ ├── floating_rock.c │ ├── flower_splash.c │ ├── flower_trail.c │ ├── footprint.c │ ├── fright_jar.c │ ├── gather_energy_pink.c │ ├── gather_magic.c │ ├── gfx │ │ ├── attack_result_text.c │ │ ├── aura.c │ │ ├── balloon.c │ │ ├── big_smoke_puff.c │ │ ├── big_snowflakes.c │ │ ├── blast.c │ │ ├── breaking_junk.c │ │ ├── bulb_glow.c │ │ ├── butterflies.c │ │ ├── chapter_change.c │ │ ├── chomp_drop.c │ │ ├── cloud_puff_trail.c │ │ ├── cold_breath.c │ │ ├── confetti.c │ │ ├── damage_indicator.c │ │ ├── damage_stars.c │ │ ├── debuff.c │ │ ├── disable_x.c │ │ ├── drop_leaves.c │ │ ├── dust.c │ │ ├── effect_3D.c │ │ ├── effect_46.c │ │ ├── effect_63.c │ │ ├── effect_65.c │ │ ├── effect_75.c │ │ ├── effect_86.c │ │ ├── embers.c │ │ ├── emote.c │ │ ├── ending_decals.c │ │ ├── energy_in_out.c │ │ ├── energy_orb_wave.c │ │ ├── energy_shockwave.c │ │ ├── explosion.c │ │ ├── falling_leaves.c │ │ ├── fire_breath.c │ │ ├── fire_flower.c │ │ ├── firework.c │ │ ├── firework_rocket.c │ │ ├── flame.c │ │ ├── flashing_box_shockwave.c │ │ ├── floating_cloud_puff.c │ │ ├── floating_flower.c │ │ ├── floating_rock.c │ │ ├── flower_splash_trail.c │ │ ├── footprint.c │ │ ├── fright_jar.c │ │ ├── gather_energy_pink.c │ │ ├── gather_magic.c │ │ ├── got_item_outline.c │ │ ├── green_impact.c │ │ ├── hieroglyphs.c │ │ ├── huff_puff_breath.c │ │ ├── ice_pillar.c │ │ ├── ice_shard.c │ │ ├── landing_dust.c │ │ ├── lens_flare.c │ │ ├── light_rays.c │ │ ├── lightning.c │ │ ├── lightning_bolt.c │ │ ├── lil_oink.c │ │ ├── merlin_house_stars.c │ │ ├── misc_particles.c │ │ ├── motion_blur_flame.c │ │ ├── moving_cloud.c │ │ ├── music_note.c │ │ ├── partner_buff.c │ │ ├── peach_star_beam.c │ │ ├── purple_ring.c │ │ ├── quizmo_answer.c │ │ ├── quizmo_assistant.c │ │ ├── quizmo_audience.c │ │ ├── quizmo_stage.c │ │ ├── radial_shimmer.c │ │ ├── radiating_energy_orb.c │ │ ├── recover.c │ │ ├── ring_blast.c │ │ ├── rising_bubble.c │ │ ├── shape_spell.c │ │ ├── shattering_stones.c │ │ ├── shiny_flare.c │ │ ├── shockwave.c │ │ ├── sleep_bubble.c │ │ ├── small_gold_sparkle.c │ │ ├── snaking_static.c │ │ ├── snowfall.c │ │ ├── snowflake.c │ │ ├── snowman_doll.c │ │ ├── sparkles.c │ │ ├── spiky_white_aura.c │ │ ├── spirit_card.c │ │ ├── squirt.c │ │ ├── star.c │ │ ├── star_outline.c │ │ ├── star_spirits_energy.c │ │ ├── stars_orbiting.c │ │ ├── stars_spread.c │ │ ├── stat_change.c │ │ ├── static_status.c │ │ ├── steam_burst.c │ │ ├── stop_watch.c │ │ ├── sun.c │ │ ├── sweat.c │ │ ├── tattle_window.c │ │ ├── throw_spiny.c │ │ ├── thunderbolt_ring.c │ │ ├── tubba_heart_attack.c │ │ ├── underwater.c │ │ ├── water_block.c │ │ ├── water_fountain.c │ │ ├── water_splash.c │ │ ├── waterfall.c │ │ └── whirlwind.c │ ├── got_item_outline.c │ ├── green_impact.c │ ├── hieroglyphs.c │ ├── huff_puff_breath.c │ ├── ice_pillar.c │ ├── ice_shard.c │ ├── landing_dust.c │ ├── lens_flare.c │ ├── light_rays.c │ ├── lightning.c │ ├── lightning_bolt.c │ ├── lil_oink.c │ ├── merlin_house_stars.c │ ├── misc_particles.c │ ├── motion_blur_flame.c │ ├── moving_cloud.c │ ├── music_note.c │ ├── partner_buff.c │ ├── peach_star_beam.c │ ├── pink_sparkles.c │ ├── purple_ring.c │ ├── quizmo_answer.c │ ├── quizmo_assistant.c │ ├── quizmo_audience.c │ ├── quizmo_stage.c │ ├── radial_shimmer.c │ ├── radiating_energy_orb.c │ ├── recover.c │ ├── red_impact.c │ ├── ring_blast.c │ ├── rising_bubble.c │ ├── shape_spell.c │ ├── shattering_stones.c │ ├── shimmer_burst.c │ ├── shimmer_wave.c │ ├── shiny_flare.c │ ├── shockwave.c │ ├── sleep_bubble.c │ ├── small_gold_sparkle.c │ ├── smoke_burst.c │ ├── smoke_impact.c │ ├── smoke_ring.c │ ├── snaking_static.c │ ├── snowfall.c │ ├── snowflake.c │ ├── snowman_doll.c │ ├── something_rotating.c │ ├── sparkles.c │ ├── spiky_white_aura.c │ ├── spirit_card.c │ ├── squirt.c │ ├── star.c │ ├── star_outline.c │ ├── star_spirits_energy.c │ ├── stars_burst.c │ ├── stars_orbiting.c │ ├── stars_shimmer.c │ ├── stars_spread.c │ ├── stat_change.c │ ├── static_status.c │ ├── steam_burst.c │ ├── stop_watch.c │ ├── sun.c │ ├── sweat.c │ ├── tattle_window.c │ ├── throw_spiny.c │ ├── thunderbolt_ring.c │ ├── tubba_heart_attack.c │ ├── underwater.c │ ├── walking_dust.c │ ├── water_block.c │ ├── water_fountain.c │ ├── water_splash.c │ ├── waterfall.c │ ├── whirlwind.c │ └── windy_leaves.c ├── encounter.c ├── encounter_api.c ├── entity.c ├── entity │ ├── Block.c │ ├── BlueWarpPipe.c │ ├── Chest.c │ ├── HeartBlock.c │ ├── HiddenPanel.c │ ├── ItemBlock.c │ ├── SaveBlock.c │ ├── Shadow.c │ ├── ShatteringBlock.c │ ├── ShatteringBlock_common.c │ ├── Signpost.c │ ├── SimpleSpring.c │ ├── SuperBlock.c │ ├── Switch.c │ ├── WoodenCrate.c │ ├── default │ │ ├── BoardedFloor.c │ │ ├── BombableRock.c │ │ └── Padlock.c │ ├── jan_iwa │ │ ├── ArrowSign.c │ │ ├── Plants1.c │ │ └── Plants2.c │ ├── model │ │ ├── ArrowSign.c │ │ ├── BellbellPlant_anim.c │ │ ├── BellbellPlant_gfx.c │ │ ├── BlueSwitch.c │ │ ├── BlueWarpPipe.c │ │ ├── BoardedFloor.c │ │ ├── BombableRock.c │ │ ├── BrickBlock.c │ │ ├── Chest.c │ │ ├── CymbalPlant_anim.c │ │ ├── CymbalPlant_gfx.c │ │ ├── GreenStompSwitch.c │ │ ├── Hammer1Block.c │ │ ├── Hammer2Block.c │ │ ├── Hammer3Block.c │ │ ├── HeartBlock.c │ │ ├── HeartBlockContent.c │ │ ├── HiddenPanel.c │ │ ├── HitFloatingYellowBlock_anim.c │ │ ├── HitFloatingYellowBlock_gfx.c │ │ ├── HitRedBlock_anim.c │ │ ├── HitRedBlock_gfx.c │ │ ├── HitYellowBlock_anim.c │ │ ├── HitYellowBlock_gfx.c │ │ ├── InertRedBlock.c │ │ ├── InertYellowBlock.c │ │ ├── MunchlesiaBeginChew_anim.c │ │ ├── MunchlesiaBeginChew_gfx.c │ │ ├── MunchlesiaChewing_anim.c │ │ ├── MunchlesiaChewing_gfx.c │ │ ├── MunchlesiaEnvelop_anim.c │ │ ├── MunchlesiaEnvelop_gfx.c │ │ ├── MunchlesiaGrab_anim.c │ │ ├── MunchlesiaGrab_gfx.c │ │ ├── MunchlesiaReset1_anim.c │ │ ├── MunchlesiaReset1_gfx.c │ │ ├── MunchlesiaReset_anim.c │ │ ├── MunchlesiaReset_gfx.c │ │ ├── MunchlesiaSpitOut_anim.c │ │ ├── MunchlesiaSpitOut_gfx.c │ │ ├── Padlock.c │ │ ├── PadlockBlueFace.c │ │ ├── PadlockRedFace.c │ │ ├── PadlockRedFrame.c │ │ ├── PinkFlower_anim.c │ │ ├── PinkFlower_gfx.c │ │ ├── PowBlock.c │ │ ├── PushBlock.c │ │ ├── RedBlock.c │ │ ├── RedSwitch.c │ │ ├── SaveBlock.c │ │ ├── ScriptSpring_anim.c │ │ ├── ScriptSpring_gfx.c │ │ ├── ShatteringBrickBlock.c │ │ ├── ShatteringHammer1Block.c │ │ ├── ShatteringHammer2Block.c │ │ ├── ShatteringHammer3Block.c │ │ ├── Signpost.c │ │ ├── SimpleSpring_anim.c │ │ ├── SimpleSpring_gfx.c │ │ ├── SpinningFlower.c │ │ ├── StarBoxLauncher.c │ │ ├── SuperBlock.c │ │ ├── SuperBlockContent.c │ │ ├── TrumpetPlant_anim.c │ │ ├── TrumpetPlant_gfx.c │ │ ├── Tweester.c │ │ ├── UltraBlock.c │ │ ├── UltraBlockContent.c │ │ ├── UnusedBlock.c │ │ ├── WoodenCrate.c │ │ └── YellowBlock.c │ └── sbk_omo │ │ ├── StarBoxLauncher.c │ │ └── Tweester.c ├── entity_model.c ├── evt │ ├── audio_api.c │ ├── cam_api.c │ ├── demo_api.c │ ├── evt.c │ ├── f8f60_len_1560.c │ ├── fx_api.c │ ├── item_api.c │ ├── map_api.c │ ├── model_api.c │ ├── msg_api.c │ ├── msg_api.h │ ├── npc_api.c │ ├── player_api.c │ ├── script_list.c │ └── virtual_entity.c ├── filemenu │ ├── filemenu_common.c │ ├── filemenu_createfile.c │ ├── filemenu_gfx.c │ ├── filemenu_info.c │ ├── filemenu_main.c │ ├── filemenu_msg.c │ ├── filemenu_styles.c │ └── filemenu_yesno.c ├── fio.c ├── fio.h ├── foliage.cpp ├── foliage.hpp ├── game_modes.c ├── game_modes.h ├── gcc │ ├── divdi3.c │ ├── moddi3.c │ ├── udivdi3.c │ ├── udivmoddi4.inc.c │ └── umoddi3.c ├── general_heap_create_obfuscated.c ├── global_hud_scripts.c ├── heap.c ├── heaps.c ├── heaps2.c ├── heaps3.c ├── hud_element.c ├── hud_element.h ├── i_spy.c ├── imgfx.c ├── input.c ├── inspect_icon.c ├── inventory.c ├── is_debug.c ├── item_entity.c ├── item_table.yaml ├── level_up.c ├── load_engine_data_obfuscated.c ├── load_obfuscation_shims.c ├── main.c ├── main_loop.c ├── main_pre.c ├── map_shape.ld ├── menu_hud_scripts.c ├── model.c ├── model_clear_render_tasks.c ├── model_clear_render_tasks.h ├── move_table.yaml ├── msg.c ├── msg.h ├── msg_data.c ├── msg_draw.c ├── msg_img.c ├── npc.c ├── npc_collision.c ├── npc_follow.c ├── obfuscation_shims.c ├── os │ ├── __osDisableInt.s │ ├── __osGetCause.s │ ├── __osGetSR.s │ ├── __osProbeTLB.s │ ├── __osRestoreInt.s │ ├── __osSetCompare.s │ ├── __osSetWatchLo.s │ ├── _getcount.c │ ├── _setcompare.c │ ├── afterprenmi.c │ ├── ai.c │ ├── aigetlength.c │ ├── aigetstatus.c │ ├── aisetfrequency.c │ ├── aisetnextbuf.c │ ├── bcmp.s │ ├── bcopy.s │ ├── bzero.s │ ├── cartrominit.c │ ├── contpfs.c │ ├── contquery.c │ ├── contramread.c │ ├── contramwrite.c │ ├── contreaddata.c │ ├── controller.c │ ├── coss.c │ ├── crc.c │ ├── createmesgqueue.c │ ├── createthread.c │ ├── decode_yay0.s │ ├── destroythread.c │ ├── devmgr.c │ ├── epidma.c │ ├── epilinkhandle.c │ ├── epirawdma.c │ ├── epirawread.c │ ├── epirawwrite.c │ ├── epiread.c │ ├── epiwrite.c │ ├── exceptasm.s │ ├── flashreadarray.c │ ├── flashsectorerase.c │ ├── flashwritearray.c │ ├── flashwritebuffer.c │ ├── frustum.c │ ├── getactivequeue.c │ ├── getthreadpri.c │ ├── gettime.c │ ├── guLookAt.c │ ├── guMtxCat.c │ ├── guMtxCat.s │ ├── guMtxCatF.s │ ├── guMtxF2L.s │ ├── guMtxIdent.s │ ├── guMtxIdentF.s │ ├── guMtxL2F.s │ ├── guMtxXFMF.c │ ├── guMtxXFML.c │ ├── guNormalize.s │ ├── guOrtho.c │ ├── guRotate.c │ ├── guScale.s │ ├── guScaleF.s │ ├── guTranslate.s │ ├── guTranslateF.s │ ├── initialize.c │ ├── jammesg.c │ ├── ldiv.c │ ├── lookathil.c │ ├── lookatref.c │ ├── memset.c │ ├── motor.c │ ├── nusys │ │ ├── nuboot.c │ │ ├── nucontdataget.c │ │ ├── nucontdatalock.c │ │ ├── nucontinit.c │ │ ├── nucontmgr.c │ │ ├── nucontpakmgr.c │ │ ├── nucontqueryread.c │ │ ├── nucontrmbcheck.c │ │ ├── nucontrmbforcestop.c │ │ ├── nucontrmbforcestopend.c │ │ ├── nucontrmbmgr.c │ │ ├── nucontrmbmodeset.c │ │ ├── nucontrmbstart.c │ │ ├── nugfxdisplayoff.c │ │ ├── nugfxdisplayon.c │ │ ├── nugfxfuncset.c │ │ ├── nugfxinit.c │ │ ├── nugfxprenmifuncset.c │ │ ├── nugfxretracewait.c │ │ ├── nugfxsetcfb.c │ │ ├── nugfxswapcfb.c │ │ ├── nugfxswapcfbfuncset.c │ │ ├── nugfxtaskallendwait.c │ │ ├── nugfxtaskmgr.c │ │ ├── nugfxthread.c │ │ ├── nupiinit.c │ │ ├── nupireadrom.c │ │ ├── nupireadromoverlay.c │ │ ├── nusched.c │ │ ├── nusicallbackadd.c │ │ ├── nusicallbackremove.c │ │ └── nusimgr.c │ ├── osFlash.c │ ├── osGetCount.s │ ├── osInvalDCache.s │ ├── osInvalICache.s │ ├── osMapTLB.s │ ├── osMapTLBRdb.s │ ├── osSetIntMask.s │ ├── osSiDeviceBusy.c │ ├── osUnmapTLB.s │ ├── osUnmapTLBAll.s │ ├── osWritebackDCache.s │ ├── osWritebackDCacheAll.s │ ├── padding.s │ ├── padding_alt.s │ ├── parameters.s │ ├── perspective.c │ ├── pfsallocatefile.c │ ├── pfschecker.c │ ├── pfsdeletefile.c │ ├── pfsfilestate.c │ ├── pfsfindfile.c │ ├── pfsfreeblocks.c │ ├── pfsgetstatus.c │ ├── pfsinitpak.c │ ├── pfsisplug.c │ ├── pfsnumfiles.c │ ├── pfsreadwritefile.c │ ├── pfsrepairid.c │ ├── pfssearchfile.c │ ├── pfsselectbank.c │ ├── piacs.c │ ├── pigetcmdq.c │ ├── pimgr.c │ ├── pirawdma.c │ ├── position.c │ ├── recvmesg.c │ ├── resetglobalintmask.c │ ├── rotateRPY.c │ ├── sendmesg.c │ ├── seteventmesg.c │ ├── setfpccsr.s │ ├── setglobalintmask.c │ ├── setsr.s │ ├── setthreadpri.c │ ├── settime.c │ ├── settimer.c │ ├── si.c │ ├── siacs.c │ ├── sins.c │ ├── sintable.inc.c │ ├── sirawdma.c │ ├── sirawread.c │ ├── sirawwrite.c │ ├── skapi.s │ ├── sp.c │ ├── spgetstat.c │ ├── sprawdma.c │ ├── sprintf.c │ ├── spsetpc.c │ ├── spsetstat.c │ ├── sptask.c │ ├── sptaskyield.c │ ├── sptaskyielded.c │ ├── sqrtf.c │ ├── startthread.c │ ├── stopthread.c │ ├── strcmp.c │ ├── strcpy.c │ ├── string.c │ ├── strncmp.c │ ├── thread.c │ ├── timerintr.c │ ├── vi.c │ ├── viblack.c │ ├── vigetcurrcontext.c │ ├── vigetcurrframebuf.c │ ├── vigetmode.c │ ├── vigetnextframebuf.c │ ├── vimgr.c │ ├── vimodempallan1.c │ ├── vimodentsclan1.c │ ├── vimodepallan1.c │ ├── virepeatline.c │ ├── virtualtophysical.c │ ├── visetevent.c │ ├── visetmode.c │ ├── visetspecial.c │ ├── visetyscale.c │ ├── viswapbuf.c │ ├── viswapcontext.c │ ├── vitbl.c │ ├── xldtob.c │ ├── xlitob.c │ ├── xprintf.c │ └── yieldthread.c ├── pause │ ├── pause_badges.c │ ├── pause_common.h │ ├── pause_gfx.c │ ├── pause_gfx_en.c │ ├── pause_items.c │ ├── pause_main.c │ ├── pause_map.c │ ├── pause_partners.c │ ├── pause_spirits.c │ ├── pause_stats.c │ ├── pause_styles.c │ └── pause_tabs.c ├── pulse_stone.c ├── recipes.yaml ├── recipes_jp.yaml ├── rumble.c ├── screen_overlays.c ├── screen_render_util.c ├── speech_bubble.c ├── sprite.c ├── sprite.h ├── sprite_shading.c ├── starpoint.c ├── startup_screen_fading.c ├── state_battle.c ├── state_demo.c ├── state_file_select.c ├── state_intro.c ├── state_logos.c ├── state_map_transitions.c ├── state_pause.c ├── state_startup.c ├── state_title_screen.c ├── state_world.c ├── status_icons.c ├── status_star_shimmer.c ├── texture_memory.c ├── trigger.c ├── vars_access.c ├── windows.c ├── worker.c ├── world │ ├── action │ │ ├── hammer.c │ │ ├── hit_fire.c │ │ ├── hit_lava.c │ │ ├── idle.c │ │ ├── jump.c │ │ ├── knockback.c │ │ ├── land.c │ │ ├── misc.c │ │ ├── slide.c │ │ ├── sneaky_parasol.c │ │ ├── spin.c │ │ ├── spin_jump.c │ │ ├── step_up.c │ │ ├── tornado_jump.c │ │ ├── use_munchlesia.c │ │ ├── use_spinning_flower.c │ │ ├── use_tweester.c │ │ └── walk.c │ ├── actions.c │ ├── actions.h │ ├── area_arn │ │ ├── arn.h │ │ ├── arn_02 │ │ │ ├── arn_02.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── arn_03 │ │ │ ├── arn_03.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── arn_04 │ │ │ ├── arn_04.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── arn_05 │ │ │ ├── arn_05.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── arn_07 │ │ │ ├── arn_07.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── windmill.c │ │ ├── arn_08 │ │ │ ├── arn_08.h │ │ │ ├── demo.c │ │ │ ├── entity.c │ │ │ ├── gears.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── well.c │ │ ├── arn_09 │ │ │ ├── arn_09.h │ │ │ ├── entity.c │ │ │ ├── launch.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── arn_10 │ │ │ ├── arn_10.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── arn_11 │ │ │ ├── arn_11.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── arn_12 │ │ │ ├── arn_12.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ └── arn_13 │ │ │ ├── arn_13.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ ├── area_dgb │ │ ├── dgb.h │ │ ├── dgb_00 │ │ │ ├── dgb_00.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── dgb_01 │ │ │ ├── bridges.c │ │ │ ├── dgb_01.h │ │ │ ├── entity.c │ │ │ ├── gfx.c │ │ │ ├── img0.c │ │ │ ├── img1.c │ │ │ ├── img2.c │ │ │ ├── img3.c │ │ │ ├── img4.c │ │ │ ├── img5.c │ │ │ ├── img6.c │ │ │ ├── img7.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ ├── smash_bridges_anim.inc.c │ │ │ └── smash_bridges_skeleton.inc.c │ │ ├── dgb_02 │ │ │ ├── dgb_02.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── dgb_03 │ │ │ ├── clock.c │ │ │ ├── dgb_03.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── dgb_04 │ │ │ ├── dgb_04.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── dgb_05 │ │ │ ├── dgb_05.h │ │ │ ├── entity.c │ │ │ ├── hole.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── dgb_06 │ │ │ ├── dgb_06.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── dgb_07 │ │ │ ├── dgb_07.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── dgb_08 │ │ │ ├── dgb_08.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── dgb_09 │ │ │ ├── breakable.c │ │ │ ├── dgb_09.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── dgb_10 │ │ │ ├── dgb_10.h │ │ │ ├── entity.c │ │ │ ├── hole.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── dgb_11 │ │ │ ├── dgb_11.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── dgb_12 │ │ │ ├── dgb_12.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── settings.c │ │ │ └── spikes.c │ │ ├── dgb_13 │ │ │ ├── dgb_13.h │ │ │ ├── drawer.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── dgb_14 │ │ │ ├── dgb_14.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── dgb_15 │ │ │ ├── dgb_15.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── dgb_16 │ │ │ ├── dgb_16.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── dgb_17 │ │ │ ├── dgb_17.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── dgb_18 │ │ │ ├── dgb_18.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── dgb_vtx.h │ │ └── smash_bridges.c │ ├── area_dro │ │ ├── dro.h │ │ ├── dro_01 │ │ │ ├── dro_01.h │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── npc_composer.c │ │ │ ├── npc_hint_dryite.c │ │ │ ├── npc_hint_dryite_companion.c │ │ │ ├── npc_shop_owner.c │ │ │ ├── rooms.c │ │ │ ├── settings.c │ │ │ └── shop.c │ │ └── dro_02 │ │ │ ├── dro_02.h │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── npc_merlee.c │ │ │ ├── npc_moustafa.c │ │ │ ├── rooms.c │ │ │ └── settings.c │ ├── area_end │ │ ├── common │ │ │ ├── Credits.h │ │ │ └── Credits.inc.c │ │ ├── end.h │ │ ├── end_00 │ │ │ ├── allies.c │ │ │ ├── boos.c │ │ │ ├── bowser.c │ │ │ ├── caravan.c │ │ │ ├── credits.c │ │ │ ├── credits_jobs.inc.c │ │ │ ├── credits_jobs_pal.inc.c │ │ │ ├── credits_names.inc.c │ │ │ ├── credits_names_pal.inc.c │ │ │ ├── credits_title.inc.c │ │ │ ├── credits_title_pal.inc.c │ │ │ ├── crystal_king.c │ │ │ ├── end_00.h │ │ │ ├── huff_n_puff.c │ │ │ ├── koopas.c │ │ │ ├── main.c │ │ │ ├── parade_setup.c │ │ │ ├── settings.c │ │ │ └── yoshis.c │ │ └── end_01 │ │ │ ├── credits.c │ │ │ ├── credits_jobs.inc.c │ │ │ ├── credits_jobs_pal.inc.c │ │ │ ├── credits_names.inc.c │ │ │ ├── credits_names_pal.inc.c │ │ │ ├── end_01.h │ │ │ ├── flower_float.c │ │ │ ├── main.c │ │ │ ├── opera_float.c │ │ │ ├── parade_setup.c │ │ │ ├── peach_float.c │ │ │ ├── settings.c │ │ │ └── shyguy_float.c │ ├── area_flo │ │ ├── common │ │ │ ├── DroppingVine.inc.c │ │ │ ├── FlowerSpawnRegion.inc.c │ │ │ ├── ItemChoice_FlowerGuard.inc.c │ │ │ └── LogBridge.inc.c │ │ ├── flo.h │ │ ├── flo_00 │ │ │ ├── beanstalk.c │ │ │ ├── entity.c │ │ │ ├── epilogue.c │ │ │ ├── flo_00.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── flo_03 │ │ │ ├── entity.c │ │ │ ├── flo_03.h │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── flo_07 │ │ │ ├── flo_07.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── flo_08 │ │ │ ├── entity.c │ │ │ ├── flo_08.h │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── vines.c │ │ ├── flo_09 │ │ │ ├── flo_09.h │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── vines.c │ │ ├── flo_10 │ │ │ ├── entity.c │ │ │ ├── flo_10.h │ │ │ ├── foliage.c │ │ │ ├── fountain.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── waterfx.c │ │ ├── flo_11 │ │ │ ├── entity.c │ │ │ ├── flo_11.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── flo_12 │ │ │ ├── flo_12.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── flo_13 │ │ │ ├── entity.c │ │ │ ├── flo_13.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── new_partner.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── flo_14 │ │ │ ├── bubbles.c │ │ │ ├── entity.c │ │ │ ├── flo_14.h │ │ │ ├── logs.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── flo_15 │ │ │ ├── entity.c │ │ │ ├── flo_15.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── stairs.c │ │ ├── flo_16 │ │ │ ├── entity.c │ │ │ ├── flo_16.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── puzzle.c │ │ │ ├── settings.c │ │ │ └── vines.c │ │ ├── flo_17 │ │ │ ├── entity.c │ │ │ ├── flo_17.h │ │ │ ├── logs.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── flo_18 │ │ │ ├── flo_18.h │ │ │ ├── foliage.c │ │ │ ├── machine.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── flo_19 │ │ │ ├── beanstalk.c │ │ │ ├── clouds.c │ │ │ ├── entity.c │ │ │ ├── flo_19.h │ │ │ ├── generated.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── flo_21 │ │ │ ├── clouds.c │ │ │ ├── flo_21.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── flo_22 │ │ │ ├── flo_22.h │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── well.c │ │ ├── flo_23 │ │ │ ├── entity.c │ │ │ ├── flo_23.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── flo_24 │ │ │ ├── entity.c │ │ │ ├── flo_24.h │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── settings.c │ │ │ └── water.c │ │ └── flo_25 │ │ │ ├── entity.c │ │ │ ├── flo_25.h │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── vine.c │ ├── area_gv │ │ ├── gv.h │ │ └── gv_01 │ │ │ ├── gv_01.h │ │ │ ├── main.c │ │ │ └── settings.c │ ├── area_hos │ │ ├── common │ │ │ ├── FallingStars.inc.c │ │ │ ├── IntroMathUtil.inc.c │ │ │ └── Narrator.inc.c │ │ ├── hos.h │ │ ├── hos_00 │ │ │ ├── entity.c │ │ │ ├── hos_00.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── scenes.c │ │ │ ├── settings.c │ │ │ ├── shade_gfx.c │ │ │ └── unused.c │ │ ├── hos_01 │ │ │ ├── entity.c │ │ │ ├── hos_01.h │ │ │ ├── main.c │ │ │ ├── model_fx.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── star_way.c │ │ ├── hos_02 │ │ │ ├── descent.c │ │ │ ├── hos_02.h │ │ │ ├── main.c │ │ │ ├── model_fx.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── unused.c │ │ ├── hos_03 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── hos_03.h │ │ │ ├── main.c │ │ │ ├── model_fx.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── rooms.c │ │ │ ├── settings.c │ │ │ └── shop.c │ │ ├── hos_04 │ │ │ ├── fountains.c │ │ │ ├── hos_04.h │ │ │ ├── intro.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── narrator.c │ │ │ ├── settings.c │ │ │ ├── starship.c │ │ │ └── unused.c │ │ ├── hos_05 │ │ │ ├── hos_05.h │ │ │ ├── intro.c │ │ │ ├── main.c │ │ │ ├── misc.c │ │ │ ├── model_fx.c │ │ │ ├── music.c │ │ │ ├── narrator.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── star_ship.c │ │ ├── hos_06 │ │ │ ├── chest.c │ │ │ ├── entity.c │ │ │ ├── hos_06.h │ │ │ ├── main.c │ │ │ ├── merlow.c │ │ │ ├── merluvlee.c │ │ │ ├── rooms.c │ │ │ └── settings.c │ │ ├── hos_10 │ │ │ ├── ending.c │ │ │ ├── hos_10.h │ │ │ ├── intro.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── narrator.c │ │ │ ├── npc1.c │ │ │ ├── npc2.c │ │ │ ├── pre_title.c │ │ │ └── settings.c │ │ └── hos_20 │ │ │ ├── hos_20.h │ │ │ ├── main.c │ │ │ ├── settings.c │ │ │ └── starship.c │ ├── area_isk │ │ ├── isk.h │ │ ├── isk_01 │ │ │ ├── entity.c │ │ │ ├── haze.c │ │ │ ├── isk_01.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── isk_02 │ │ │ ├── ambush.c │ │ │ ├── entity.c │ │ │ ├── isk_02.h │ │ │ ├── lock.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── isk_03 │ │ │ ├── entity.c │ │ │ ├── isk_03.h │ │ │ ├── main.c │ │ │ ├── sand.c │ │ │ ├── settings.c │ │ │ └── switch.c │ │ ├── isk_04 │ │ │ ├── demo.c │ │ │ ├── entity.c │ │ │ ├── isk_04.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── obstructions.c │ │ │ └── settings.c │ │ ├── isk_05 │ │ │ ├── entity.c │ │ │ ├── isk_05.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── isk_06 │ │ │ ├── entity.c │ │ │ ├── isk_06.h │ │ │ ├── main.c │ │ │ ├── sand.c │ │ │ ├── settings.c │ │ │ └── switch.c │ │ ├── isk_07 │ │ │ ├── ambush.c │ │ │ ├── entity.c │ │ │ ├── isk_07.h │ │ │ ├── lock.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ ├── stairs.c │ │ │ └── switch.c │ │ ├── isk_08 │ │ │ ├── entity.c │ │ │ ├── isk_08.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── isk_09 │ │ │ ├── entity.c │ │ │ ├── isk_09.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── settings.c │ │ │ ├── stairs.c │ │ │ └── switch.c │ │ ├── isk_10 │ │ │ ├── bombable.c │ │ │ ├── entity.c │ │ │ ├── isk_10.h │ │ │ ├── main.c │ │ │ └── settings.c │ │ ├── isk_11 │ │ │ ├── entity.c │ │ │ ├── isk_11.h │ │ │ ├── lock.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── puzzle.c │ │ │ ├── scene.c │ │ │ └── settings.c │ │ ├── isk_12 │ │ │ ├── entity.c │ │ │ ├── isk_12.h │ │ │ ├── main.c │ │ │ ├── sand.c │ │ │ ├── settings.c │ │ │ └── switch.c │ │ ├── isk_13 │ │ │ ├── entity.c │ │ │ ├── isk_13.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── isk_14 │ │ │ ├── entity.c │ │ │ ├── isk_14.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── isk_16 │ │ │ ├── boss.c │ │ │ ├── entity.c │ │ │ ├── isk_16.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── isk_18 │ │ │ ├── entity.c │ │ │ ├── isk_18.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ └── isk_19 │ │ │ ├── entity.c │ │ │ ├── isk_19.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ ├── area_iwa │ │ ├── common │ │ │ └── UnkScriptJP00.inc.c │ │ ├── iwa.h │ │ ├── iwa_00 │ │ │ ├── entity.c │ │ │ ├── iwa_00.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── slide.c │ │ ├── iwa_01 │ │ │ ├── entity.c │ │ │ ├── iwa_01.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ ├── slide.c │ │ │ └── splash.c │ │ ├── iwa_02 │ │ │ ├── entity.c │ │ │ ├── iwa_02.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── iwa_03 │ │ │ ├── entity.c │ │ │ ├── iwa_03.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── slide.c │ │ ├── iwa_04 │ │ │ ├── entity.c │ │ │ ├── iwa_04.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── iwa_10 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── iwa_10.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── new_partner.c │ │ │ ├── npc.c │ │ │ ├── parakarry.c │ │ │ ├── settings.c │ │ │ └── train.c │ │ └── iwa_11 │ │ │ ├── iwa_11.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── scenery.c │ │ │ ├── settings.c │ │ │ └── train.c │ ├── area_jan │ │ ├── common │ │ │ ├── MoveBush.inc.c │ │ │ ├── MoveBushTemplates.h │ │ │ └── PullVine.inc.c │ │ ├── jan.h │ │ ├── jan_00 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── jan_00.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── whale.c │ │ ├── jan_01 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── jan_01.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── jan_02 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── jan_02.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── jan_03 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── jan_03.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── rooms.c │ │ │ ├── settings.c │ │ │ └── shop.c │ │ ├── jan_04 │ │ │ ├── bushes.c │ │ │ ├── demo.c │ │ │ ├── entity.c │ │ │ ├── jan_04.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── scenes.c │ │ │ ├── settings.c │ │ │ ├── treasure.c │ │ │ ├── trees.c │ │ │ └── unused.c │ │ ├── jan_05 │ │ │ ├── bushes.c │ │ │ ├── entity.c │ │ │ ├── jan_05.h │ │ │ ├── log.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trees.c │ │ ├── jan_06 │ │ │ ├── bushes.c │ │ │ ├── entity.c │ │ │ ├── jan_06.h │ │ │ ├── log.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ ├── statue.c │ │ │ └── trees.c │ │ ├── jan_07 │ │ │ ├── bushes.c │ │ │ ├── jan_07.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trees.c │ │ ├── jan_08 │ │ │ ├── bushes.c │ │ │ ├── entity.c │ │ │ ├── jan_08.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trees.c │ │ ├── jan_09 │ │ │ ├── bushes.c │ │ │ ├── entity.c │ │ │ ├── jan_09.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trees.c │ │ ├── jan_10 │ │ │ ├── bushes.c │ │ │ ├── entity.c │ │ │ ├── jan_10.h │ │ │ ├── log.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trees.c │ │ ├── jan_11 │ │ │ ├── jan_11.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── jan_12 │ │ │ ├── entity.c │ │ │ ├── jan_12.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ ├── trees.c │ │ │ └── vines.c │ │ ├── jan_13 │ │ │ ├── entity.c │ │ │ ├── jan_13.h │ │ │ ├── main.c │ │ │ ├── puzzle.c │ │ │ ├── settings.c │ │ │ └── trees.c │ │ ├── jan_14 │ │ │ ├── jan_14.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ ├── trees.c │ │ │ └── vines.c │ │ ├── jan_15 │ │ │ ├── entity.c │ │ │ ├── jan_15.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trees.c │ │ ├── jan_16 │ │ │ ├── bushes.c │ │ │ ├── entity.c │ │ │ ├── jan_16.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── jan_17 │ │ │ ├── entity.c │ │ │ ├── jan_17.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── jan_18 │ │ │ ├── entity.c │ │ │ ├── jan_18.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── jan_19 │ │ │ ├── entity.c │ │ │ ├── jan_19.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── jan_22 │ │ │ ├── bushes.c │ │ │ ├── entity.c │ │ │ ├── jan_22.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ ├── trees.c │ │ │ └── zipline.c │ │ └── jan_23 │ │ │ ├── jan_23.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ ├── area_kgr │ │ ├── kgr.h │ │ ├── kgr_01 │ │ │ ├── extra.c │ │ │ ├── kgr_01.h │ │ │ ├── main.c │ │ │ └── wiggle.c │ │ └── kgr_02 │ │ │ ├── extra.c │ │ │ ├── kgr_02.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── unused.c │ ├── area_kkj │ │ ├── common │ │ │ ├── ApproachPlayer100Units.inc.c │ │ │ ├── ApproachPlayer50Units.inc.c │ │ │ ├── PreventNextPeachDisguise.inc.c │ │ │ ├── RestoreFromPeachState.inc.c │ │ │ ├── Searchlights.inc.c │ │ │ └── SetAvailableDisguise.inc.c │ │ ├── kkj.h │ │ ├── kkj_00 │ │ │ ├── kkj_00.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc_ending.c │ │ │ ├── npc_intro.c │ │ │ ├── scene_ending.c │ │ │ ├── scene_intro.c │ │ │ └── settings.c │ │ ├── kkj_01 │ │ │ ├── kkj_01.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kkj_02 │ │ │ ├── kkj_02.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kkj_03 │ │ │ ├── kkj_03.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── scenes.c │ │ │ └── settings.c │ │ ├── kkj_10 │ │ │ ├── entity.c │ │ │ ├── kkj_10.h │ │ │ ├── main.c │ │ │ ├── npcs_early.c │ │ │ ├── npcs_later.c │ │ │ └── settings.c │ │ ├── kkj_11 │ │ │ ├── demo.c │ │ │ ├── entity.c │ │ │ ├── kkj_11.h │ │ │ ├── main.c │ │ │ ├── npcs_early.c │ │ │ ├── npcs_later.c │ │ │ ├── scene.c │ │ │ └── settings.c │ │ ├── kkj_12 │ │ │ ├── kkj_12.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kkj_13 │ │ │ ├── intro_scenes.c │ │ │ ├── kkj_13.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npcs_finale.c │ │ │ ├── npcs_intro.c │ │ │ └── settings.c │ │ ├── kkj_14 │ │ │ ├── chapter0.c │ │ │ ├── chapter1.c │ │ │ ├── chapter2.c │ │ │ ├── chapter3.c │ │ │ ├── chapter4.c │ │ │ ├── chapter5.c │ │ │ ├── chapter6.c │ │ │ ├── chapter7.c │ │ │ ├── interactables.c │ │ │ ├── kkj_14.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc_ch0.c │ │ │ ├── npc_ch2.c │ │ │ ├── npc_ch7.c │ │ │ ├── npc_guards.c │ │ │ └── settings.c │ │ ├── kkj_15 │ │ │ ├── chapter0.c │ │ │ ├── chapter1.c │ │ │ ├── chapter2.c │ │ │ ├── chapter3.c │ │ │ ├── kkj_15.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc_chapter0.c │ │ │ ├── npc_chapter1.c │ │ │ ├── npc_chapter3.c │ │ │ ├── rotating_wall.c │ │ │ └── settings.c │ │ ├── kkj_16 │ │ │ ├── entity.c │ │ │ ├── kkj_16.h │ │ │ ├── main.c │ │ │ ├── npcs_early.c │ │ │ ├── npcs_later.c │ │ │ ├── settings.c │ │ │ └── stealth.c │ │ ├── kkj_17 │ │ │ ├── chest.c │ │ │ ├── entity.c │ │ │ ├── kkj_17.h │ │ │ ├── main.c │ │ │ └── settings.c │ │ ├── kkj_18 │ │ │ ├── gourmet.c │ │ │ ├── kkj_18.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kkj_19 │ │ │ ├── baking.c │ │ │ ├── kkj_19.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npcs_intro.c │ │ │ ├── npcs_peach.c │ │ │ └── settings.c │ │ ├── kkj_20 │ │ │ ├── entity.c │ │ │ ├── kkj_20.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kkj_21 │ │ │ ├── kkj_21.h │ │ │ ├── main.c │ │ │ └── settings.c │ │ ├── kkj_22 │ │ │ ├── kkj_22.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kkj_23 │ │ │ ├── kkj_23.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npcs_finale.c │ │ │ ├── npcs_peach.c │ │ │ ├── scene.c │ │ │ └── settings.c │ │ ├── kkj_24 │ │ │ ├── entity.c │ │ │ ├── kkj_24.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kkj_25 │ │ │ ├── arena.c │ │ │ ├── bowser_defeated.c │ │ │ ├── entity.c │ │ │ ├── kammy_defeated.c │ │ │ ├── kkj_25.h │ │ │ ├── main.c │ │ │ ├── npc_final.c │ │ │ ├── npc_initial.c │ │ │ ├── npc_midpoint.c │ │ │ ├── peach_free.c │ │ │ └── settings.c │ │ ├── kkj_26 │ │ │ ├── demo.c │ │ │ ├── kkj_26.h │ │ │ ├── main.c │ │ │ ├── scenes.c │ │ │ └── settings.c │ │ ├── kkj_27 │ │ │ ├── kkj_27.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── rotating_wall.c │ │ │ └── settings.c │ │ ├── kkj_28 │ │ │ ├── kkj_28.h │ │ │ ├── main.c │ │ │ └── settings.c │ │ └── kkj_29 │ │ │ ├── kkj_29.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── quiz.c │ │ │ └── settings.c │ ├── area_kmr │ │ ├── kmr.h │ │ ├── kmr_00 │ │ │ ├── entity.c │ │ │ ├── kmr_00.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── revival.c │ │ │ └── settings.c │ │ ├── kmr_02 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── images.c │ │ │ ├── kammy.c │ │ │ ├── kmr_02.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── rooms_1.c │ │ │ ├── rooms_2.c │ │ │ ├── settings.c │ │ │ └── wander_territories.inc.c │ │ ├── kmr_03 │ │ │ ├── entity.c │ │ │ ├── fall_down.c │ │ │ ├── foliage.c │ │ │ ├── kmr_03.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kmr_04 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── kmr_04.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kmr_05 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── kmr_05.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kmr_06 │ │ │ ├── entity.c │ │ │ ├── kmr_06.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── sticker_sign.c │ │ ├── kmr_07 │ │ │ ├── entity.c │ │ │ ├── kmr_07.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kmr_09 │ │ │ ├── entity.c │ │ │ ├── kmr_09.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kmr_10 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── kmr_10.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kmr_11 │ │ │ ├── bridge_animation.c │ │ │ ├── bridge_skeleton.c │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── fortress_animation.c │ │ │ ├── fortress_skeleton.c │ │ │ ├── kammy.c │ │ │ ├── kmr_11.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── scenes.c │ │ │ └── settings.c │ │ ├── kmr_12 │ │ │ ├── entity.c │ │ │ ├── kmr_12.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kmr_20 │ │ │ ├── bed.c │ │ │ ├── bushes.c │ │ │ ├── documents.c │ │ │ ├── entity.c │ │ │ ├── kmr_20.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── npc_epilogue.c │ │ │ ├── npc_intro.c │ │ │ ├── npc_scenes.c │ │ │ ├── records.c │ │ │ ├── rooms.c │ │ │ ├── settings.c │ │ │ └── trees.c │ │ ├── kmr_21 │ │ │ ├── kmr_21.h │ │ │ ├── main.c │ │ │ └── settings.c │ │ ├── kmr_22 │ │ │ ├── kmr_22.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── npc │ │ │ │ ├── chapter_1.inc.c │ │ │ │ ├── chapter_2.inc.c │ │ │ │ ├── chapter_3.inc.c │ │ │ │ ├── chapter_4.inc.c │ │ │ │ ├── chapter_5.inc.c │ │ │ │ ├── chapter_6.inc.c │ │ │ │ ├── chapter_7.inc.c │ │ │ │ ├── chapter_8.inc.c │ │ │ │ └── lava_piranha.inc.c │ │ │ └── settings.c │ │ ├── kmr_23 │ │ │ ├── kmr_23.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kmr_24 │ │ │ ├── kmr_24.h │ │ │ ├── main.c │ │ │ └── settings.c │ │ └── kmr_30 │ │ │ ├── kmr_30.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── the_end.c │ ├── area_kpa │ │ ├── kpa.h │ │ ├── kpa_01 │ │ │ ├── entity.c │ │ │ ├── kpa_01.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_03 │ │ │ ├── entity.c │ │ │ ├── kpa_03.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_04 │ │ │ ├── kpa_04.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── settings.c │ │ │ └── statues.c │ │ ├── kpa_08 │ │ │ ├── entity.c │ │ │ ├── kpa_08.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_09 │ │ │ ├── entity.c │ │ │ ├── kpa_09.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_10 │ │ │ ├── entity.c │ │ │ ├── kpa_10.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_100 │ │ │ ├── entity.c │ │ │ ├── kpa_100.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_101 │ │ │ ├── entity.c │ │ │ ├── kpa_101.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_102 │ │ │ ├── kpa_102.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_11 │ │ │ ├── entity.c │ │ │ ├── kpa_11.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_111 │ │ │ ├── entity.c │ │ │ ├── kpa_111.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── statues.c │ │ ├── kpa_112 │ │ │ ├── kpa_112.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_113 │ │ │ ├── entity.c │ │ │ ├── kpa_113.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── statues.c │ │ ├── kpa_114 │ │ │ ├── entity.c │ │ │ ├── kpa_114.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_115 │ │ │ ├── kpa_115.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── statues.c │ │ ├── kpa_116 │ │ │ ├── kpa_116.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_117 │ │ │ ├── kpa_117.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_118 │ │ │ ├── kpa_118.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_119 │ │ │ ├── entity.c │ │ │ ├── kpa_119.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_12 │ │ │ ├── kpa_12.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── platforms.c │ │ │ └── settings.c │ │ ├── kpa_121 │ │ │ ├── kpa_121.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_13 │ │ │ ├── entity.c │ │ │ ├── kpa_13.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── platforms.c │ │ │ └── settings.c │ │ ├── kpa_130 │ │ │ ├── kpa_130.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_133 │ │ │ ├── ease.c │ │ │ ├── entity.c │ │ │ ├── kpa_133.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── water.c │ │ ├── kpa_134 │ │ │ ├── chains.c │ │ │ ├── entity.c │ │ │ ├── kpa_134.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── panels.c │ │ │ └── settings.c │ │ ├── kpa_14 │ │ │ ├── entity.c │ │ │ ├── kpa_14.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── platforms.c │ │ │ └── settings.c │ │ ├── kpa_15 │ │ │ ├── entity.c │ │ │ ├── kpa_15.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_16 │ │ │ ├── entity.c │ │ │ ├── kpa_16.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_17 │ │ │ ├── entity.c │ │ │ ├── kpa_17.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_32 │ │ │ ├── entity.c │ │ │ ├── kpa_32.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_33 │ │ │ ├── entity.c │ │ │ ├── kpa_33.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_40 │ │ │ ├── kpa_40.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_41 │ │ │ ├── kpa_41.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_50 │ │ │ ├── kpa_50.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_51 │ │ │ ├── kpa_51.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_52 │ │ │ ├── entity.c │ │ │ ├── kpa_52.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_53 │ │ │ ├── entity.c │ │ │ ├── kpa_53.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_60 │ │ │ ├── entity.c │ │ │ ├── kpa_60.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── scenes.c │ │ │ └── settings.c │ │ ├── kpa_61 │ │ │ ├── entity.c │ │ │ ├── kpa_61.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_62 │ │ │ ├── entity.c │ │ │ ├── kpa_62.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_63 │ │ │ ├── entity.c │ │ │ ├── kpa_63.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── scenes.c │ │ │ └── settings.c │ │ ├── kpa_70 │ │ │ ├── chain_anim.c │ │ │ ├── chain_skele.c │ │ │ ├── kpa_70.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_81 │ │ │ ├── kpa_81.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_82 │ │ │ ├── kpa_82.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_83 │ │ │ ├── kpa_83.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_90 │ │ │ ├── kpa_90.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_91 │ │ │ ├── entity.c │ │ │ ├── kpa_91.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kpa_94 │ │ │ ├── kpa_94.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ └── settings.c │ │ ├── kpa_95 │ │ │ ├── entity.c │ │ │ ├── kpa_95.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ └── kpa_96 │ │ │ ├── kpa_96.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ ├── area_kzn │ │ ├── common │ │ │ ├── LavaGlowLighting.inc.c │ │ │ └── SpinyTromp.inc.c │ │ ├── kzn.h │ │ ├── kzn_01 │ │ │ ├── kzn_01.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kzn_02 │ │ │ ├── demo.c │ │ │ ├── kzn_02.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── platforms.c │ │ │ └── settings.c │ │ ├── kzn_03 │ │ │ ├── entity.c │ │ │ ├── kzn_03.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── ziplines.c │ │ ├── kzn_04 │ │ │ ├── entity.c │ │ │ ├── kzn_04.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kzn_05 │ │ │ ├── kzn_05.h │ │ │ ├── main.c │ │ │ └── settings.c │ │ ├── kzn_06 │ │ │ ├── entity.c │ │ │ ├── extra.c │ │ │ ├── kzn_06.h │ │ │ ├── main.c │ │ │ └── settings.c │ │ ├── kzn_07 │ │ │ ├── entity.c │ │ │ ├── kzn_07.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kzn_08 │ │ │ ├── entity.c │ │ │ ├── extra.c │ │ │ ├── kzn_08.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kzn_09 │ │ │ ├── entity.c │ │ │ ├── kzn_09.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── zipline.c │ │ ├── kzn_10 │ │ │ ├── kzn_10.h │ │ │ ├── main.c │ │ │ ├── settings.c │ │ │ └── tromp.c │ │ ├── kzn_11 │ │ │ ├── kzn_11.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── platforms.c │ │ │ └── settings.c │ │ ├── kzn_17 │ │ │ ├── entity.c │ │ │ ├── kzn_17.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── tromp.c │ │ ├── kzn_18 │ │ │ ├── entity.c │ │ │ ├── kzn_18.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kzn_19 │ │ │ ├── entity.c │ │ │ ├── eruption.c │ │ │ ├── kzn_19.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── npc_settings.c │ │ │ └── settings.c │ │ ├── kzn_20 │ │ │ ├── kzn_20.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── kzn_22 │ │ │ ├── entity.c │ │ │ ├── kzn_22.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ └── kzn_23 │ │ │ ├── kzn_23.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ ├── area_mac │ │ ├── mac.h │ │ ├── mac_00 │ │ │ ├── demo.c │ │ │ ├── entity.c │ │ │ ├── epilogue.c │ │ │ ├── epilogue_npc.c │ │ │ ├── intro.c │ │ │ ├── intro_npc.c │ │ │ ├── mac_00.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── music_mix.c │ │ │ ├── npc.c │ │ │ ├── npc │ │ │ │ ├── dojo_members.inc.c │ │ │ │ ├── russ_and_thief.inc.c │ │ │ │ ├── trading_toad.inc.c │ │ │ │ └── waterfront_family.inc.c │ │ │ ├── rooms.c │ │ │ ├── settings.c │ │ │ ├── shared_npc.c │ │ │ ├── shop.c │ │ │ └── water_gfx.c │ │ ├── mac_01 │ │ │ ├── bulletin.c │ │ │ ├── crystal_ball_gfx.c │ │ │ ├── entity.c │ │ │ ├── epilogue_npc.c │ │ │ ├── foliage.c │ │ │ ├── intro.c │ │ │ ├── intro_npc.c │ │ │ ├── mac_01.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── music_mix.c │ │ │ ├── npc.c │ │ │ ├── npc │ │ │ │ ├── flower_gate.inc.c │ │ │ │ ├── post_office.inc.c │ │ │ │ ├── read_fortune.inc.c │ │ │ │ └── rowf_and_rhuff.inc.c │ │ │ ├── rooms.c │ │ │ ├── settings.c │ │ │ └── shop.c │ │ ├── mac_02 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── mac_02.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── music_mix.c │ │ │ ├── npc.c │ │ │ ├── npc │ │ │ │ ├── bootler.inc.c │ │ │ │ ├── bubulb.inc.c │ │ │ │ ├── cooking_apprentice.inc.c │ │ │ │ ├── fice_t.inc.c │ │ │ │ ├── shyguy_thief.inc.c │ │ │ │ ├── tayce_t.inc.c │ │ │ │ ├── toad_1.inc.c │ │ │ │ ├── toad_2.inc.c │ │ │ │ ├── toad_3.inc.c │ │ │ │ ├── toad_4.inc.c │ │ │ │ └── toad_kid.inc.c │ │ │ ├── rooms.c │ │ │ └── settings.c │ │ ├── mac_03 │ │ │ ├── demo.c │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── mac_03.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── oinks.c │ │ │ ├── settings.c │ │ │ └── train.c │ │ ├── mac_04 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── mac_04.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── music_mix.c │ │ │ ├── npc.c │ │ │ ├── npc_chet_rippo.inc.c │ │ │ ├── npc_goomba_family.inc.c │ │ │ ├── npc_gossip_trio.inc.c │ │ │ ├── npc_harry_t.inc.c │ │ │ ├── npc_muskular.inc.c │ │ │ ├── npc_new_residents.inc.c │ │ │ ├── npc_toad_01.inc.c │ │ │ ├── npc_toad_02.inc.c │ │ │ ├── npc_toad_03.inc.c │ │ │ ├── npc_toad_kids.inc.c │ │ │ ├── npc_toadette_03.inc.c │ │ │ ├── npc_toybox_shyguy.inc.c │ │ │ ├── npc_twink.inc.c │ │ │ ├── rooms.c │ │ │ ├── settings.c │ │ │ ├── shop.c │ │ │ └── wish_scene.c │ │ ├── mac_05 │ │ │ ├── club64_sign.c │ │ │ ├── entity.c │ │ │ ├── mac_05.h │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── rooms.c │ │ │ ├── settings.c │ │ │ └── whale.c │ │ ├── mac_06 │ │ │ ├── mac_06.h │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── whale.c │ │ └── machi │ │ │ ├── entity.c │ │ │ ├── goomba_king.c │ │ │ ├── machi.h │ │ │ ├── main.c │ │ │ ├── misstar.c │ │ │ ├── npc.c │ │ │ ├── partner.c │ │ │ ├── settings.c │ │ │ └── tables.c │ ├── area_mgm │ │ ├── mgm.h │ │ ├── mgm_00 │ │ │ ├── main.c │ │ │ ├── mgm_00.h │ │ │ ├── npc.c │ │ │ ├── scoreboard.c │ │ │ └── settings.c │ │ ├── mgm_01 │ │ │ ├── entity.c │ │ │ ├── images.c │ │ │ ├── main.c │ │ │ ├── mgm_01.h │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── mgm_02 │ │ │ ├── images.c │ │ │ ├── main.c │ │ │ ├── mgm_02.h │ │ │ ├── npc.c │ │ │ └── settings.c │ │ └── mgm_03 │ │ │ ├── main.c │ │ │ ├── mgm_03.h │ │ │ └── settings.c │ ├── area_mim │ │ ├── common │ │ │ ├── AnimateGates.inc.c │ │ │ ├── SetForeverForestFog.inc.c │ │ │ ├── SetupGates.inc.c │ │ │ ├── SupportGates.inc.c │ │ │ └── UseGates.inc.c │ │ ├── mim.h │ │ ├── mim_01 │ │ │ ├── entity.c │ │ │ ├── gate.c │ │ │ ├── hint.c │ │ │ ├── main.c │ │ │ ├── mim_01.h │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── mim_02 │ │ │ ├── gate.c │ │ │ ├── hint.c │ │ │ ├── main.c │ │ │ ├── mim_02.h │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── mim_03 │ │ │ ├── entity.c │ │ │ ├── gate.c │ │ │ ├── hint.c │ │ │ ├── main.c │ │ │ ├── mim_03.h │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── mim_04 │ │ │ ├── entity.c │ │ │ ├── gate.c │ │ │ ├── hint.c │ │ │ ├── main.c │ │ │ ├── mim_04.h │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── mim_05 │ │ │ ├── entity.c │ │ │ ├── gate.c │ │ │ ├── hint.c │ │ │ ├── main.c │ │ │ ├── mim_05.h │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── mim_06 │ │ │ ├── entity.c │ │ │ ├── gate.c │ │ │ ├── hint.c │ │ │ ├── main.c │ │ │ ├── mim_06.h │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── mim_07 │ │ │ ├── entity.c │ │ │ ├── gate.c │ │ │ ├── hint.c │ │ │ ├── main.c │ │ │ ├── mim_07.h │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── mim_08 │ │ │ ├── entity.c │ │ │ ├── gate.c │ │ │ ├── main.c │ │ │ ├── mim_08.h │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── mim_09 │ │ │ ├── entity.c │ │ │ ├── gate.c │ │ │ ├── hint.c │ │ │ ├── main.c │ │ │ ├── mim_09.h │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── mim_10 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── mim_10.h │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── mim_11 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── gate.c │ │ │ ├── main.c │ │ │ ├── mim_11.h │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ │ └── mim_12 │ │ │ ├── entity.c │ │ │ ├── gate.c │ │ │ ├── main.c │ │ │ ├── mim_12.h │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ └── settings.c │ ├── area_nok │ │ ├── common │ │ │ └── GetIntoShell.inc.c │ │ ├── nok.h │ │ ├── nok_01 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── nok_01.h │ │ │ ├── npc.c │ │ │ ├── npcs_crisis.inc.c │ │ │ ├── npcs_normal.inc.c │ │ │ ├── radio.c │ │ │ ├── rooms.c │ │ │ ├── settings.c │ │ │ └── shop.c │ │ ├── nok_02 │ │ │ ├── bookshelf.c │ │ │ ├── demo.c │ │ │ ├── entity.c │ │ │ ├── epilogue.c │ │ │ ├── foliage.c │ │ │ ├── koot_favors.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── nok_02.h │ │ │ ├── npc.c │ │ │ ├── npcs_crisis.inc.c │ │ │ ├── npcs_normal.inc.c │ │ │ ├── rooms.c │ │ │ └── settings.c │ │ ├── nok_03 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── nok_03.h │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── nok_04 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── new_partner.c │ │ │ ├── nok_04.h │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── nok_11 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── nok_11.h │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── nok_12 │ │ │ ├── bridge.c │ │ │ ├── demo.c │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── nok_12.h │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── nok_13 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── musical_hill.c │ │ │ ├── nok_13.h │ │ │ ├── npc.c │ │ │ └── settings.c │ │ ├── nok_14 │ │ │ ├── bridge.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── nok_14.h │ │ │ ├── npc.c │ │ │ └── settings.c │ │ └── nok_15 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── nok_15.h │ │ │ ├── npc.c │ │ │ └── settings.c │ ├── area_obk │ │ ├── common │ │ │ ├── RockingChair.inc.c │ │ │ └── TrafficBoos.inc.c │ │ ├── obk.h │ │ ├── obk_01 │ │ │ ├── chandelier.c │ │ │ ├── entity.c │ │ │ ├── jump_scare.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── obk_01.h │ │ │ ├── portrait.c │ │ │ └── settings.c │ │ ├── obk_02 │ │ │ ├── bombable.c │ │ │ ├── clock.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── obk_02.h │ │ │ └── settings.c │ │ ├── obk_03 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── obk_03.h │ │ │ ├── rocking_chair.c │ │ │ ├── settings.c │ │ │ ├── shop.c │ │ │ └── stairs.c │ │ ├── obk_04 │ │ │ ├── entity.c │ │ │ ├── game.c │ │ │ ├── hole.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── obk_04.h │ │ │ └── settings.c │ │ ├── obk_05 │ │ │ ├── entity.c │ │ │ ├── hole.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── obk_05.h │ │ │ ├── rocking_chair.c │ │ │ └── settings.c │ │ ├── obk_06 │ │ │ ├── bombable.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── obk_06.h │ │ │ └── settings.c │ │ ├── obk_07 │ │ │ ├── entity.c │ │ │ ├── fireplace.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── obk_07.h │ │ │ ├── phonograph.c │ │ │ └── settings.c │ │ ├── obk_08 │ │ │ ├── cabinets.c │ │ │ ├── entity.c │ │ │ ├── game.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── obk_08.h │ │ │ └── settings.c │ │ └── obk_09 │ │ │ ├── epilogue.c │ │ │ ├── main.c │ │ │ ├── meet_bow.c │ │ │ ├── music.c │ │ │ ├── new_partner.c │ │ │ ├── npc.c │ │ │ ├── obk_09.h │ │ │ └── settings.c │ ├── area_omo │ │ ├── common │ │ │ ├── RockingHorse.inc.c │ │ │ ├── ToyTrain.inc.c │ │ │ └── TrainStationSwitches.inc.c │ │ ├── omo.h │ │ ├── omo_01 │ │ │ ├── entity.c │ │ │ ├── gizmos.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_01.h │ │ │ └── settings.c │ │ ├── omo_02 │ │ │ ├── barricade.c │ │ │ ├── entity.c │ │ │ ├── gizmos.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_02.h │ │ │ └── settings.c │ │ ├── omo_03 │ │ │ ├── entity.c │ │ │ ├── epilogue.c │ │ │ ├── gizmos.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_03.h │ │ │ ├── settings.c │ │ │ ├── train.c │ │ │ └── train_drop.c │ │ ├── omo_04 │ │ │ ├── entity.c │ │ │ ├── gizmos.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_04.h │ │ │ ├── scenes.c │ │ │ └── settings.c │ │ ├── omo_05 │ │ │ ├── entity.c │ │ │ ├── gizmos.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_05.h │ │ │ └── settings.c │ │ ├── omo_06 │ │ │ ├── entity.c │ │ │ ├── gizmos.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_06.h │ │ │ ├── settings.c │ │ │ └── train.c │ │ ├── omo_07 │ │ │ ├── entity.c │ │ │ ├── gizmos.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_07.h │ │ │ ├── scenes.c │ │ │ └── settings.c │ │ ├── omo_08 │ │ │ ├── boxes.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_08.h │ │ │ ├── settings.c │ │ │ └── train.c │ │ ├── omo_09 │ │ │ ├── conveyors.c │ │ │ ├── entity.c │ │ │ ├── gizmos.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_09.h │ │ │ ├── scenes.c │ │ │ ├── settings.c │ │ │ └── slot_machine.c │ │ ├── omo_10 │ │ │ ├── entity.c │ │ │ ├── gizmos.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_10.h │ │ │ ├── settings.c │ │ │ └── train.c │ │ ├── omo_11 │ │ │ ├── entity.c │ │ │ ├── gizmos.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_11.h │ │ │ └── settings.c │ │ ├── omo_12 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── new_partner.c │ │ │ ├── npc.c │ │ │ ├── omo_12.h │ │ │ └── settings.c │ │ ├── omo_13 │ │ │ ├── entity.c │ │ │ ├── gizmos.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_13.h │ │ │ └── settings.c │ │ ├── omo_14 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_14.h │ │ │ └── settings.c │ │ ├── omo_15 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── omo_15.h │ │ │ └── settings.c │ │ ├── omo_16 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── omo_16.h │ │ │ ├── settings.c │ │ │ └── train.c │ │ └── omo_17 │ │ │ ├── entity.c │ │ │ ├── gizmos.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── omo_17.h │ │ │ ├── settings.c │ │ │ └── train.c │ ├── area_osr │ │ ├── osr.h │ │ ├── osr_00 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc_epilogue.c │ │ │ ├── npc_intro.c │ │ │ ├── osr_00.h │ │ │ ├── scenes.c │ │ │ └── settings.c │ │ ├── osr_01 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── osr_01.h │ │ │ └── settings.c │ │ ├── osr_02 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── npc_peach.c │ │ │ ├── osr_02.h │ │ │ └── settings.c │ │ ├── osr_03 │ │ │ ├── ending.c │ │ │ ├── interlude.c │ │ │ ├── intro.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── osr_03.h │ │ │ ├── settings.c │ │ │ └── starship.c │ │ └── osr_04 │ │ │ ├── assault.c │ │ │ ├── main.c │ │ │ ├── osr_04.h │ │ │ └── settings.c │ ├── area_pra │ │ ├── common │ │ │ ├── GlassShimmer.inc.c │ │ │ ├── MapInit_EnableFloorReflection.inc.c │ │ │ ├── Reflection.data.inc.c │ │ │ └── Reflection.inc.c │ │ ├── pra.h │ │ ├── pra_01 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_01.h │ │ │ └── settings.c │ │ ├── pra_02 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_02.h │ │ │ ├── pra_02_3_entity.c │ │ │ └── settings.c │ │ ├── pra_03 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_03.h │ │ │ └── settings.c │ │ ├── pra_04 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_04.h │ │ │ └── settings.c │ │ ├── pra_05 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_05.h │ │ │ └── settings.c │ │ ├── pra_06 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_06.h │ │ │ └── settings.c │ │ ├── pra_09 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_09.h │ │ │ └── settings.c │ │ ├── pra_10 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_10.h │ │ │ └── settings.c │ │ ├── pra_11 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_11.h │ │ │ └── settings.c │ │ ├── pra_12 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_12.h │ │ │ └── settings.c │ │ ├── pra_13 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_13.h │ │ │ └── settings.c │ │ ├── pra_14 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_14.h │ │ │ └── settings.c │ │ ├── pra_15 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_15.h │ │ │ └── settings.c │ │ ├── pra_16 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_16.h │ │ │ └── settings.c │ │ ├── pra_18 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_18.h │ │ │ └── settings.c │ │ ├── pra_19 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_19.h │ │ │ └── settings.c │ │ ├── pra_20 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_20.h │ │ │ └── settings.c │ │ ├── pra_21 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_21.h │ │ │ └── settings.c │ │ ├── pra_22 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_22.h │ │ │ └── settings.c │ │ ├── pra_27 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_27.h │ │ │ └── settings.c │ │ ├── pra_28 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_28.h │ │ │ └── settings.c │ │ ├── pra_29 │ │ │ ├── bridge.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_29.h │ │ │ └── settings.c │ │ ├── pra_31 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_31.h │ │ │ ├── puzzle.c │ │ │ ├── settings.c │ │ │ ├── stairs_anim.c │ │ │ ├── stairs_lights.c │ │ │ ├── stairs_skele.c │ │ │ ├── stairs_vtx.c │ │ │ ├── texture_1.c │ │ │ ├── texture_2.c │ │ │ └── texture_3.c │ │ ├── pra_32 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_32.h │ │ │ └── settings.c │ │ ├── pra_33 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_33.h │ │ │ └── settings.c │ │ ├── pra_34 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_34.h │ │ │ └── settings.c │ │ ├── pra_35 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_35.h │ │ │ └── settings.c │ │ ├── pra_36 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_36.h │ │ │ └── settings.c │ │ ├── pra_37 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_37.h │ │ │ └── settings.c │ │ ├── pra_38 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_38.h │ │ │ └── settings.c │ │ ├── pra_39 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pra_39.h │ │ │ └── settings.c │ │ └── pra_40 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── pra_40.h │ │ │ └── settings.c │ ├── area_sam │ │ ├── common │ │ │ └── ManageSnowfall.inc.c │ │ ├── sam.h │ │ ├── sam_01 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── rooms.c │ │ │ ├── sam_01.h │ │ │ ├── scenes.c │ │ │ └── settings.c │ │ ├── sam_02 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── rooms.c │ │ │ ├── sam_02.h │ │ │ ├── settings.c │ │ │ └── shop.c │ │ ├── sam_03 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc1.c │ │ │ ├── npc2.c │ │ │ ├── sam_03.h │ │ │ └── settings.c │ │ ├── sam_04 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── sam_04.h │ │ │ ├── settings.c │ │ │ └── snowmen.c │ │ ├── sam_05 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── monstar_gfx.c │ │ │ ├── monstar_vtx.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── sam_05.h │ │ │ ├── scenes.c │ │ │ └── settings.c │ │ ├── sam_06 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── rooms.c │ │ │ ├── sam_06.h │ │ │ └── settings.c │ │ ├── sam_07 │ │ │ ├── entity.c │ │ │ ├── frozen_pit.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── sam_07.h │ │ │ └── settings.c │ │ ├── sam_08 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── sam_08.h │ │ │ ├── scenes.c │ │ │ └── settings.c │ │ ├── sam_09 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── sam_09.h │ │ │ ├── settings.c │ │ │ └── sockets.c │ │ ├── sam_10 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── sam_10.h │ │ │ ├── settings.c │ │ │ └── stairs.c │ │ ├── sam_11 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── pond.c │ │ │ ├── pond_anim.c │ │ │ ├── pond_skele.c │ │ │ ├── rooms.c │ │ │ ├── sam_11.h │ │ │ ├── settings.c │ │ │ └── staircase.c │ │ └── sam_12 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── sam_12.h │ │ │ ├── scenes.c │ │ │ └── settings.c │ ├── area_sbk │ │ ├── sbk.h │ │ ├── sbk_00 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── sbk_00.h │ │ │ └── settings.c │ │ ├── sbk_01 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_01.h │ │ ├── sbk_02 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── ruins.c │ │ │ ├── sbk_02.h │ │ │ └── settings.c │ │ ├── sbk_03 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_03.h │ │ ├── sbk_04 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_04.h │ │ ├── sbk_05 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_05.h │ │ ├── sbk_06 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_06.h │ │ ├── sbk_10 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── sbk_10.h │ │ ├── sbk_11 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_11.h │ │ ├── sbk_12 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_12.h │ │ ├── sbk_13 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_13.h │ │ ├── sbk_14 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── sbk_14.h │ │ ├── sbk_15 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_15.h │ │ ├── sbk_16 │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ └── sbk_16.h │ │ ├── sbk_20 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_20.h │ │ ├── sbk_21 │ │ │ ├── main.c │ │ │ └── sbk_21.h │ │ ├── sbk_22 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_22.h │ │ ├── sbk_23 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── sbk_23.h │ │ ├── sbk_24 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_24.h │ │ ├── sbk_25 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_25.h │ │ ├── sbk_26 │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_26.h │ │ ├── sbk_30 │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── sbk_30.h │ │ │ └── settings.c │ │ ├── sbk_31 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_31.h │ │ ├── sbk_32 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_32.h │ │ ├── sbk_33 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── sbk_33.h │ │ │ └── settings.c │ │ ├── sbk_34 │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_34.h │ │ ├── sbk_35 │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_35.h │ │ ├── sbk_36 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ └── sbk_36.h │ │ ├── sbk_40 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_40.h │ │ ├── sbk_41 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── sbk_41.h │ │ ├── sbk_42 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_42.h │ │ ├── sbk_43 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── sbk_43.h │ │ ├── sbk_44 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_44.h │ │ ├── sbk_45 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── sbk_45.h │ │ ├── sbk_46 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_46.h │ │ ├── sbk_50 │ │ │ ├── main.c │ │ │ └── sbk_50.h │ │ ├── sbk_51 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_51.h │ │ ├── sbk_52 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── sbk_52.h │ │ ├── sbk_53 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_53.h │ │ ├── sbk_54 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── sbk_54.h │ │ ├── sbk_55 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_55.h │ │ ├── sbk_56 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ └── sbk_56.h │ │ ├── sbk_60 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_60.h │ │ ├── sbk_61 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── sbk_61.h │ │ ├── sbk_62 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_62.h │ │ ├── sbk_63 │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_63.h │ │ ├── sbk_64 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── sbk_64.h │ │ ├── sbk_65 │ │ │ ├── main.c │ │ │ └── sbk_65.h │ │ ├── sbk_66 │ │ │ ├── entity.c │ │ │ ├── foliage.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ └── sbk_66.h │ │ └── sbk_99 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── sbk_99.h │ ├── area_tik │ │ ├── common │ │ │ ├── DripVolumes.inc.c │ │ │ └── Flotsam.inc.c │ │ ├── tik.h │ │ ├── tik_01 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── tik_01.h │ │ ├── tik_02 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── tik_02.h │ │ ├── tik_03 │ │ │ ├── demo.c │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── platforms.c │ │ │ ├── settings.c │ │ │ └── tik_03.h │ │ ├── tik_04 │ │ │ ├── drips.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── platforms.c │ │ │ ├── settings.c │ │ │ └── tik_04.h │ │ ├── tik_05 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── tik_05.h │ │ ├── tik_06 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── settings.c │ │ │ └── tik_06.h │ │ ├── tik_07 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── platforms.c │ │ │ ├── settings.c │ │ │ └── tik_07.h │ │ ├── tik_08 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── tik_08.h │ │ ├── tik_09 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── tik_09.h │ │ ├── tik_10 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── settings.c │ │ │ └── tik_10.h │ │ ├── tik_12 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── tik_12.h │ │ ├── tik_14 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── settings.c │ │ │ └── tik_14.h │ │ ├── tik_15 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── tik_15.h │ │ ├── tik_17 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── settings.c │ │ │ └── tik_17.h │ │ ├── tik_18 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── tik_18.h │ │ ├── tik_19 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── settings.c │ │ │ └── tik_19.h │ │ ├── tik_20 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── tik_20.h │ │ ├── tik_21 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── settings.c │ │ │ └── tik_21.h │ │ ├── tik_22 │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── settings.c │ │ │ └── tik_22.h │ │ ├── tik_23 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── tik_23.h │ │ ├── tik_24 │ │ │ ├── drips.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── tik_24.h │ │ └── tik_25 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── music.c │ │ │ ├── settings.c │ │ │ └── tik_25.h │ ├── area_trd │ │ ├── trd.h │ │ ├── trd_00 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trd_00.h │ │ ├── trd_01 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trd_01.h │ │ ├── trd_02 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trd_02.h │ │ ├── trd_03 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── puzzle.c │ │ │ ├── settings.c │ │ │ └── trd_03.h │ │ ├── trd_04 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trd_04.h │ │ ├── trd_05 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ ├── trap.c │ │ │ └── trd_05.h │ │ ├── trd_06 │ │ │ ├── entity.c │ │ │ ├── falling.c │ │ │ ├── main.c │ │ │ ├── npc_koopa_bros.c │ │ │ ├── npc_prisoners.c │ │ │ ├── settings.c │ │ │ └── trd_06.h │ │ ├── trd_07 │ │ │ ├── magic_doors.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trd_07.h │ │ ├── trd_08 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trd_08.h │ │ ├── trd_09 │ │ │ ├── demo.c │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trd_09.h │ │ └── trd_10 │ │ │ ├── fake_bowser.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── settings.c │ │ │ └── trd_10.h │ ├── area_tst │ │ ├── tst.h │ │ ├── tst_01 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── tst_01.h │ │ ├── tst_02 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── tst_02.h │ │ ├── tst_03 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ └── tst_03.h │ │ ├── tst_04 │ │ │ ├── entity.c │ │ │ ├── main.c │ │ │ ├── npc.c │ │ │ ├── reflection.c │ │ │ └── tst_04.h │ │ ├── tst_10 │ │ │ ├── main.c │ │ │ └── tst_10.h │ │ ├── tst_11 │ │ │ ├── extra.c │ │ │ ├── main.c │ │ │ └── tst_11.h │ │ ├── tst_12 │ │ │ ├── main.c │ │ │ └── tst_12.h │ │ ├── tst_13 │ │ │ ├── main.c │ │ │ └── tst_13.h │ │ └── tst_20 │ │ │ ├── main.c │ │ │ └── tst_20.h │ ├── common │ │ ├── atomic │ │ │ ├── ApplyTint.inc.c │ │ │ ├── BetaFloorPanels.inc.c │ │ │ ├── CreateDarkness.inc.c │ │ │ ├── MakeConsumableChoice.inc.c │ │ │ ├── MakeKeyChoice.inc.c │ │ │ ├── MarioSalute.inc.c │ │ │ ├── MonitorMusicProximityTrigger.inc.c │ │ │ ├── PushBlockGravity.inc.c │ │ │ ├── TexturePan.h │ │ │ ├── TexturePan.inc.c │ │ │ ├── ToadHouse.data.inc.c │ │ │ ├── ToadHouse.inc.c │ │ │ ├── ToadHouseHos.data.inc.c │ │ │ ├── WhaleAnim.inc.c │ │ │ └── WhaleGeyser.inc.c │ │ ├── complete │ │ │ ├── ConsumableItemChoice.inc.c │ │ │ ├── GiveReward.inc.c │ │ │ ├── KeyItemChoice.inc.c │ │ │ ├── KnockDownPlayer.inc.c │ │ │ ├── LetterDelivery.inc.c │ │ │ ├── NormalItemChoice.inc.c │ │ │ ├── Quizmo.inc.c │ │ │ └── ToadHouseBlanketAnim.inc.c │ │ ├── enemy │ │ │ ├── AlbinoDino.h │ │ │ ├── AlbinoDino.inc.c │ │ │ ├── AmazyDayzee.h │ │ │ ├── AmazyDayzee.inc.c │ │ │ ├── Bandit.h │ │ │ ├── Bandit.inc.c │ │ │ ├── Blooper.h │ │ │ ├── Blooper.inc.c │ │ │ ├── Bobomb.h │ │ │ ├── Bobomb.inc.c │ │ │ ├── Bobomb_Guard.inc.c │ │ │ ├── Bobomb_Wander.inc.c │ │ │ ├── Bombette.h │ │ │ ├── Bombette.inc.c │ │ │ ├── BombshellBill.h │ │ │ ├── BulletBill.h │ │ │ ├── Bzzap.h │ │ │ ├── Bzzap.inc.c │ │ │ ├── Cleft.h │ │ │ ├── Cleft.inc.c │ │ │ ├── Clubba.h │ │ │ ├── Clubba.inc.c │ │ │ ├── Clubba_Multi.inc.c │ │ │ ├── CrazyDayzee.h │ │ │ ├── CrazyDayzee.inc.c │ │ │ ├── CrystalKing.h │ │ │ ├── CrystalKing.inc.c │ │ │ ├── DarkTroopa.h │ │ │ ├── DarkTroopa_Wander.inc.c │ │ │ ├── DryBones.h │ │ │ ├── DryBones.inc.c │ │ │ ├── Duplighost.h │ │ │ ├── Duplighost_Patrol.inc.c │ │ │ ├── Duplighost_Wander.inc.c │ │ │ ├── Ember.h │ │ │ ├── Ember.inc.c │ │ │ ├── FlyingMagikoopa.h │ │ │ ├── FlyingMagikoopa.inc.c │ │ │ ├── ForestFuzzy.h │ │ │ ├── ForestFuzzy_Wander.inc.c │ │ │ ├── FrostClubba.h │ │ │ ├── FrostClubba_Multi.inc.c │ │ │ ├── FrostPiranha.h │ │ │ ├── FrostPiranha.inc.c │ │ │ ├── Fuzzy.h │ │ │ ├── Fuzzy.inc.c │ │ │ ├── Fuzzy_Wander.inc.c │ │ │ ├── Gloomba.h │ │ │ ├── Gloomba_Wander.inc.c │ │ │ ├── Goomba.h │ │ │ ├── Goomba.inc.c │ │ │ ├── GoombaBros.h │ │ │ ├── GoombaBros_Guard.inc.c │ │ │ ├── Goomba_Wander.inc.c │ │ │ ├── GrooveGuy.h │ │ │ ├── GrooveGuy.inc.c │ │ │ ├── Gulpit.h │ │ │ ├── Gulpit.inc.c │ │ │ ├── HammerBros.h │ │ │ ├── HammerBros.inc.c │ │ │ ├── HammerBros_Wander.inc.c │ │ │ ├── HeartPlant.h │ │ │ ├── HeartPlant.inc.c │ │ │ ├── HuffNPuff.h │ │ │ ├── HurtPlant.h │ │ │ ├── HurtPlant.inc.c │ │ │ ├── HyperCleft.h │ │ │ ├── HyperCleft.inc.c │ │ │ ├── HyperGoomba.h │ │ │ ├── HyperGoomba_Patrol.inc.c │ │ │ ├── HyperGoomba_Wander.inc.c │ │ │ ├── HyperParagoomba.h │ │ │ ├── HyperParagoomba.inc.c │ │ │ ├── JungleFuzzy.h │ │ │ ├── JungleFuzzy.inc.c │ │ │ ├── JungleFuzzy_Wander.inc.c │ │ │ ├── Kammy.h │ │ │ ├── Kammy.inc.c │ │ │ ├── Kammy_Flying.inc.c │ │ │ ├── Kammy_Guard.inc.c │ │ │ ├── KentCKoopa.h │ │ │ ├── KentCKoopa.inc.c │ │ │ ├── KoopaTroopa.h │ │ │ ├── KoopaTroopa_Patrol.inc.c │ │ │ ├── KoopaTroopa_Stationary.inc.c │ │ │ ├── KoopaTroopa_Wander.inc.c │ │ │ ├── Koopatrol.h │ │ │ ├── Koopatrol_Patrol.inc.c │ │ │ ├── Koopatrol_Stationary.inc.c │ │ │ ├── Koopatrol_Wander.inc.c │ │ │ ├── Lakitu.h │ │ │ ├── Lakitu_SpinySpawner.inc.c │ │ │ ├── Lakitu_Stationary.inc.c │ │ │ ├── LavaBubble.h │ │ │ ├── LavaBubble.inc.c │ │ │ ├── LavaPiranha.h │ │ │ ├── LavaPiranha.inc.c │ │ │ ├── MBush.h │ │ │ ├── MBush.inc.c │ │ │ ├── Magikoopa.h │ │ │ ├── Magikoopa.inc.c │ │ │ ├── MontyMole.h │ │ │ ├── MontyMole_GroundAmbush.inc.c │ │ │ ├── MontyMole_StoneThrower.inc.c │ │ │ ├── MontyMole_WallAmbush.inc.c │ │ │ ├── Paragloomba.h │ │ │ ├── Paragloomba_Wander.inc.c │ │ │ ├── Paragoomba.h │ │ │ ├── Paragoomba_Wander.inc.c │ │ │ ├── Paratroopa.h │ │ │ ├── Paratroopa.inc.c │ │ │ ├── PiranhaPlant.h │ │ │ ├── PiranhaPlant.inc.c │ │ │ ├── Pokey.h │ │ │ ├── Pokey.inc.c │ │ │ ├── PokeyMummy.h │ │ │ ├── PokeyMummy.inc.c │ │ │ ├── PutridPiranha.h │ │ │ ├── PutridPiranha.inc.c │ │ │ ├── PutridPiranhaSentinel.h │ │ │ ├── PutridPiranhaSentinel.inc.c │ │ │ ├── PyroGuy.h │ │ │ ├── PyroGuy.inc.c │ │ │ ├── RuffPuff.h │ │ │ ├── RuffPuff.inc.c │ │ │ ├── Sentinel.h │ │ │ ├── Sentinel.inc.c │ │ │ ├── ShyGuy.h │ │ │ ├── ShyGuy_AvoidPlayer.inc.c │ │ │ ├── ShyGuy_Guard.inc.c │ │ │ ├── ShyGuy_Patrol.inc.c │ │ │ ├── ShyGuy_Stationary.inc.c │ │ │ ├── ShyGuy_Wander.inc.c │ │ │ ├── SkyGuy.h │ │ │ ├── SkyGuy.inc.c │ │ │ ├── SpearGuy.h │ │ │ ├── SpearGuy_Patrol.inc.c │ │ │ ├── SpearGuy_Wander.inc.c │ │ │ ├── SpikeTop.h │ │ │ ├── SpikeTop.inc.c │ │ │ ├── SpikedGloomba.h │ │ │ ├── SpikedGloomba_Wander.inc.c │ │ │ ├── SpikedGoomba.h │ │ │ ├── SpikedGoomba_Patrol.inc.c │ │ │ ├── SpikedGoomba_Wander.inc.c │ │ │ ├── Spiny.h │ │ │ ├── Spiny.inc.c │ │ │ ├── SpyGuy.h │ │ │ ├── SpyGuy.inc.c │ │ │ ├── StoneChomp.h │ │ │ ├── StoneChomp.inc.c │ │ │ ├── Swooper.h │ │ │ ├── Swooper.inc.c │ │ │ ├── TubbaBlubba.h │ │ │ ├── TubbaBlubba.inc.c │ │ │ ├── TubbaBlubba_Patrol.inc.c │ │ │ ├── Whacka.h │ │ │ ├── Whacka.inc.c │ │ │ ├── YMagikoopa.h │ │ │ └── ai │ │ │ │ ├── AvoidPlayerAI.inc.c │ │ │ │ ├── BulletBillAI.inc.c │ │ │ │ ├── CleftAI.inc.c │ │ │ │ ├── ClubbaNappingAI.inc.c │ │ │ │ ├── ClubbaPatrolAI.inc.c │ │ │ │ ├── FireBarAI.inc.c │ │ │ │ ├── FlyingAI.inc.c │ │ │ │ ├── FlyingMagikoopaAI.inc.c │ │ │ │ ├── FlyingNoAttackAI.inc.c │ │ │ │ ├── GenericHitboxDefeat.inc.c │ │ │ │ ├── GrooveGuyAI.inc.c │ │ │ │ ├── GuardAI.inc.c │ │ │ │ ├── HoppingAI.inc.c │ │ │ │ ├── KoopaPatrolAI.inc.c │ │ │ │ ├── LakituAI.inc.c │ │ │ │ ├── MagikoopaAI.inc.c │ │ │ │ ├── MagikoopaSpellAI.inc.c │ │ │ │ ├── MeleeHitbox.inc.c │ │ │ │ ├── MontyMoleAI.inc.c │ │ │ │ ├── ParatroopaAI.inc.c │ │ │ │ ├── PatrolNoAttackAI.inc.c │ │ │ │ ├── PiranhaPlantAI.inc.c │ │ │ │ ├── ProjectileHitbox.inc.c │ │ │ │ ├── RangedAttackAI.inc.c │ │ │ │ ├── SentinelAI.inc.c │ │ │ │ ├── ShyGuyPatrolAI.inc.c │ │ │ │ ├── ShyGuyWanderAI.inc.c │ │ │ │ ├── SpearGuyAI.inc.c │ │ │ │ ├── SpinyAI.inc.c │ │ │ │ ├── States_PatrolAI.inc.c │ │ │ │ ├── States_TackleAI.inc.c │ │ │ │ ├── StoneChompAI.inc.c │ │ │ │ ├── SwooperAI.inc.c │ │ │ │ ├── TackleAI.inc.c │ │ │ │ └── WanderMeleeAI.inc.c │ │ ├── entity │ │ │ ├── Chest.inc.c │ │ │ ├── Pipe.inc.c │ │ │ └── SuperBlock.inc.c │ │ ├── lava_piranha │ │ │ ├── LoadAnimationFromTable.inc.c │ │ │ ├── part1.inc.c │ │ │ ├── part2.inc.c │ │ │ ├── skele1.c │ │ │ ├── skele2.c │ │ │ └── skele3.c │ │ ├── npc │ │ │ ├── BigLanternGhost.h │ │ │ ├── BigLanternGhost.inc.c │ │ │ ├── Bobomb.h │ │ │ ├── Bobomb.inc.c │ │ │ ├── Boo.h │ │ │ ├── Boo.inc.c │ │ │ ├── Boo_Patrol.inc.c │ │ │ ├── Boo_Wander.inc.c │ │ │ ├── Bootler.h │ │ │ ├── Bootler.inc.c │ │ │ ├── Bow.h │ │ │ ├── Bowser.h │ │ │ ├── Bowser.inc.c │ │ │ ├── Bubulb.h │ │ │ ├── Bubulb.inc.c │ │ │ ├── Bubulb_Patrol.inc.c │ │ │ ├── Dryite.h │ │ │ ├── Dryite_Patrol.inc.c │ │ │ ├── Dryite_Stationary.inc.c │ │ │ ├── Dryite_Wander.inc.c │ │ │ ├── Dummy.inc.c │ │ │ ├── GateFlower.h │ │ │ ├── GateFlower.inc.c │ │ │ ├── GoombaFamily.h │ │ │ ├── GoombaFamily.inc.c │ │ │ ├── GoombaFamily_Wander.inc.c │ │ │ ├── Goombaria.h │ │ │ ├── Goombaria_Stationary.inc.c │ │ │ ├── GourmetGuy.h │ │ │ ├── GourmetGuy.inc.c │ │ │ ├── JrTroopa.h │ │ │ ├── JrTroopa.inc.c │ │ │ ├── Kolorado.h │ │ │ ├── Kolorado.inc.c │ │ │ ├── KoloradoWife.h │ │ │ ├── KoloradoWife.inc.c │ │ │ ├── Koopa.h │ │ │ ├── Koopa.inc.c │ │ │ ├── KoopaBros.h │ │ │ ├── KoopaKoot.h │ │ │ ├── KoopaKoot.inc.c │ │ │ ├── KoopaWithoutShell.h │ │ │ ├── KoopaWithoutShell_Patrol.inc.c │ │ │ ├── KoopaWithoutShell_Wander.inc.c │ │ │ ├── Koopa_Wander.inc.c │ │ │ ├── Kooper.h │ │ │ ├── Kooper.inc.c │ │ │ ├── Lily.h │ │ │ ├── Lily.inc.c │ │ │ ├── Luigi.h │ │ │ ├── Luigi.inc.c │ │ │ ├── Merlar.h │ │ │ ├── Merlar.inc.c │ │ │ ├── Mouser.h │ │ │ ├── Mouser.inc.c │ │ │ ├── Oaklie.h │ │ │ ├── Oaklie.inc.c │ │ │ ├── Parakarry.h │ │ │ ├── Parakarry.inc.c │ │ │ ├── Peach.h │ │ │ ├── Peach.inc.c │ │ │ ├── Penguin.h │ │ │ ├── Penguin.inc.c │ │ │ ├── Penguin_Wander.inc.c │ │ │ ├── Posie.h │ │ │ ├── Posie.inc.c │ │ │ ├── RaphaelRaven.h │ │ │ ├── RaphaelRaven.inc.c │ │ │ ├── Raven.h │ │ │ ├── Raven.inc.c │ │ │ ├── Rosie.h │ │ │ ├── Rosie.inc.c │ │ │ ├── ShiverToad.h │ │ │ ├── ShiverToad.inc.c │ │ │ ├── StarRod.h │ │ │ ├── StarRod.inc.c │ │ │ ├── StarSpirit.h │ │ │ ├── StarSpirit.inc.c │ │ │ ├── StarSpirit_Wander.inc.c │ │ │ ├── Sun.h │ │ │ ├── Sun.inc.c │ │ │ ├── Sushie.h │ │ │ ├── Sushie.inc.c │ │ │ ├── Toad.h │ │ │ ├── ToadGuard.h │ │ │ ├── ToadKid.h │ │ │ ├── ToadMinister.h │ │ │ ├── Toad_Collection.h │ │ │ ├── Toad_Guard.inc.c │ │ │ ├── Toad_Patrol.inc.c │ │ │ ├── Toad_Stationary.inc.c │ │ │ ├── Toad_Wander.inc.c │ │ │ ├── Toadette.h │ │ │ ├── Tolielup.h │ │ │ ├── Tolielup.inc.c │ │ │ ├── TrainToad.h │ │ │ ├── TrainToad.inc.c │ │ │ ├── TubbasHeart.h │ │ │ ├── TubbasHeart.inc.c │ │ │ ├── Twink.h │ │ │ ├── Twink.inc.c │ │ │ ├── Yakkey.h │ │ │ ├── Yakkey.inc.c │ │ │ ├── Yoshi.h │ │ │ ├── Yoshi.inc.c │ │ │ ├── YoshiKid.h │ │ │ ├── YoshiKid.inc.c │ │ │ ├── YoshiKid_Patrol.inc.c │ │ │ └── Yoshi_Patrol.inc.c │ │ ├── todo │ │ │ ├── AddPlayerHandsOffset.inc.c │ │ │ ├── AwaitPlayerNearNpc.inc.c │ │ │ ├── CheckPartnerFlags1000.inc.c │ │ │ ├── CheckVineTriggerDist.inc.c │ │ │ ├── GetEncounterEnemyIsOwner.inc.c │ │ │ ├── GetEntityPosition.inc.c │ │ │ ├── GetFloorCollider.inc.c │ │ │ ├── GetItemEmptyCount.inc.c │ │ │ ├── GetItemName.inc.c │ │ │ ├── GetLeftRightPoints.inc.c │ │ │ ├── GetNpcCollisionHeight.inc.c │ │ │ ├── GetPeachDisguise.inc.c │ │ │ ├── GetPlayerCoins.inc.c │ │ │ ├── HeartPlant_SpawnHeart.inc.c │ │ │ ├── IsHammerMaxCharged.inc.c │ │ │ ├── IsItemBadge.inc.c │ │ │ ├── IsJumpMaxCharged.inc.c │ │ │ ├── IsPlayerPounding.inc.c │ │ │ ├── ItemChoice_WaitForSelection.inc.c │ │ │ ├── LoadPartyImage.inc.c │ │ │ ├── PlayBigSmokePuff.inc.c │ │ │ ├── PlayRisingBubble.inc.c │ │ │ ├── RemovePadlock.inc.c │ │ │ ├── Set80151310_0.inc.c │ │ │ ├── SetEntityPosition.inc.c │ │ │ ├── SetEntityPositionF.inc.c │ │ │ ├── SetInstigatorValue_3.inc.c │ │ │ ├── SetPlayerSpriteSet2_MapInit.inc.c │ │ │ ├── ShouldMovesAutoSucceed.inc.c │ │ │ ├── SomeItemEntityFunc.inc.c │ │ │ ├── SpawnSunEffect.inc.c │ │ │ ├── SpinyTromp_CheckDist.inc.c │ │ │ ├── StarSpiritEffectFunc.inc.c │ │ │ ├── StashVars.inc.c │ │ │ ├── SwitchToPartner.inc.c │ │ │ ├── SyncStatusBar.inc.c │ │ │ ├── UnkAngleFunc005.inc.c │ │ │ ├── UnkFloatFunc001.inc.c │ │ │ ├── UnkFunc1.inc.c │ │ │ ├── UnkFunc11.inc.c │ │ │ ├── UnkFunc12.inc.c │ │ │ ├── UnkFunc42.inc.c │ │ │ ├── UnkFunc46.inc.c │ │ │ ├── UnkFunc48.inc.c │ │ │ ├── UnkFunc49.inc.c │ │ │ ├── UnkFunc50.inc.c │ │ │ ├── UnkFunc51.inc.c │ │ │ ├── UnkFunc62.inc.c │ │ │ ├── UnkMoveFunc2.inc.c │ │ │ ├── UnkMoveFunc3.inc.c │ │ │ ├── UnkPartnerPosFuncs.inc.c │ │ │ ├── UnkVtxFunc.inc.c │ │ │ ├── UpdateLogShadow.inc.c │ │ │ └── WaitForPlayerToLand.inc.c │ │ └── util │ │ │ ├── ChangeNpcToPartner.inc.c │ │ │ ├── CheckPositionRelativeToPlane.inc.c │ │ │ ├── GetDefeatedEnemyCount.inc.c │ │ │ ├── GetFirstTriangleNormal.inc.c │ │ │ ├── GetKammyBroomEmitterPos.inc.c │ │ │ ├── MonitorPlayerOrbiting.h │ │ │ ├── MonitorPlayerOrbiting.inc.c │ │ │ ├── PlaySpringReboundAnimation.inc.c │ │ │ └── SetLightningBoltPurple.inc.c │ ├── disguise.h │ ├── entrances.h │ ├── menus.c │ ├── model_anim │ │ └── kzn │ │ │ ├── 00.c │ │ │ ├── 01.c │ │ │ ├── 02.c │ │ │ ├── 03.c │ │ │ ├── 04.c │ │ │ ├── 05.c │ │ │ ├── 06.c │ │ │ ├── 07.c │ │ │ ├── 08.c │ │ │ ├── 09.c │ │ │ ├── 0A.c │ │ │ ├── 0B.c │ │ │ ├── 0C.c │ │ │ ├── 0D.c │ │ │ ├── 0E.c │ │ │ ├── 0F.c │ │ │ ├── 10.c │ │ │ ├── 11.c │ │ │ ├── 12.c │ │ │ ├── 13.c │ │ │ ├── 14.c │ │ │ ├── 15.c │ │ │ ├── 16.c │ │ │ ├── 17.c │ │ │ ├── 18.c │ │ │ ├── 19.c │ │ │ ├── 1A.c │ │ │ ├── 1B.c │ │ │ ├── 1C.c │ │ │ ├── 1D.c │ │ │ ├── 1E.c │ │ │ ├── 1F.c │ │ │ ├── 20.c │ │ │ ├── 21.c │ │ │ ├── 22.c │ │ │ ├── 23.c │ │ │ └── 24.c │ ├── partner │ │ ├── bombette.c │ │ ├── bombette.h │ │ ├── bow.c │ │ ├── bow.h │ │ ├── goombaria.c │ │ ├── goombaria.h │ │ ├── goombario.c │ │ ├── goombario.h │ │ ├── goompa.c │ │ ├── goompa.h │ │ ├── kooper.c │ │ ├── kooper.h │ │ ├── lakilester.c │ │ ├── lakilester.h │ │ ├── parakarry.c │ │ ├── parakarry.h │ │ ├── sushie.c │ │ ├── sushie.h │ │ ├── twink.c │ │ ├── twink.h │ │ ├── watt.c │ │ └── watt.h │ ├── partners.c │ ├── partners.h │ ├── script_api │ │ ├── enter_exit.c │ │ ├── push_blocks.c │ │ ├── rooms.c │ │ └── shops.c │ ├── surfaces.c │ ├── surfaces.h │ ├── world.c │ └── world.h ├── world_map.xml └── world_use_item.c ├── tools ├── __init__.py ├── asm_sizes.py ├── build │ ├── __init__.py │ ├── actor_types.py │ ├── append_symbol_table.py │ ├── audio │ │ └── sbn.py │ ├── check_segment_sizes.py │ ├── common.py │ ├── configure.py │ ├── effects.py │ ├── genobjcopy.py │ ├── icons.py │ ├── iconv.py │ ├── img │ │ ├── build.py │ │ └── header.py │ ├── imgfx │ │ ├── __init__.py │ │ └── imgfx_data.py │ ├── item_data.py │ ├── mapfs │ │ ├── combine.py │ │ ├── map_header.py │ │ ├── pack_title_data.py │ │ ├── shape.py │ │ └── tex.py │ ├── move_data.py │ ├── msg │ │ ├── combine.py │ │ └── parse_compile.py │ ├── pm_charset.py │ ├── pm_charset_palettes.py │ ├── recipes.py │ ├── rom │ │ ├── .gitignore │ │ └── n64crc.c │ ├── sprite │ │ ├── __init__.py │ │ ├── header.py │ │ ├── npc_sprite.py │ │ ├── sprite_shading_profiles.py │ │ └── sprites.py │ └── world_map.py ├── compare_shapes.py ├── crunch64.nix ├── disasm_animation.py ├── disasm_hud_element_animation.py ├── disasm_script.py ├── find_duplicates.py ├── find_similar_areas.py ├── fix_sprite_xmls.py ├── get_variable.py ├── ignored_funcs.txt ├── migrate_data_to_c.py ├── mv_segment.py ├── old │ ├── asset_rework.py │ ├── bootstrap_effects.py │ ├── codescan.py │ ├── create_renames.py │ ├── fix_bad_evt_changes.py │ ├── fix_s_filenames.py │ ├── gen_effect_renames.py │ ├── gfxdis_loop.py │ ├── m_map_funcs.py │ ├── make_npc_structs.py │ ├── migrate_effect_rodata.py │ ├── migrate_exit_strings.py │ ├── migrate_rodata.py │ ├── new_lines.py │ ├── saved_byte_renames.txt │ ├── saved_flag_renames.txt │ ├── set_reorder_asm.sh │ ├── sortsymz.py │ ├── substitute.py │ └── update_evts.py ├── patch_64bit_compile.py ├── pigment64.nix ├── precommit_check_no_assets.sh ├── rename.py ├── renames │ ├── 0_evt_macros_remove_prefix_and_make_pascal_case.txt │ ├── 1_sprite_anims.txt │ ├── 2_battle_camera_presets.txt │ ├── 3_npc_enemy_encounter_evtgroup_flags.txt │ └── 4_parity_with_pmret.txt ├── sjis-escape.py ├── sjis.py ├── sort_symbol_addrs.py ├── splat_ext │ ├── __init__.py │ ├── a.py │ ├── gfx_common.py │ ├── icon.yaml │ ├── mapfs.yaml │ ├── mapfs_ique.yaml │ ├── mapfs_jp.yaml │ ├── msg.yaml │ ├── msg_ique.yaml │ ├── msg_jp.yaml │ ├── msg_pal_en.yaml │ ├── npc_sprite_names.yaml │ ├── player_sprite_names.yaml │ ├── pm_charset.py │ ├── pm_charset_palettes.py │ ├── pm_effect_loads.py │ ├── pm_effect_shims.py │ ├── pm_icons.py │ ├── pm_imgfx_data.py │ ├── pm_map_data.py │ ├── pm_msg.py │ ├── pm_sbn.py │ ├── pm_sprite_shading_profiles.py │ ├── pm_sprites.py │ ├── sprite_common.py │ ├── tex_archives.py │ └── vtx_common.py ├── star_rod_enum_to_decomp.py ├── star_rod_idx_to_c.py ├── sym_info.py ├── update_symbol_addrs.py └── warnings_count │ ├── .gitignore │ └── compare_warnings.py └── ver ├── ique ├── asm │ └── header.s ├── checksum.sha1 ├── splat-shift.yaml ├── splat.yaml ├── symbol_addrs.txt ├── undefined_funcs_auto.txt ├── undefined_syms.txt └── undefined_syms_auto.txt ├── jp ├── asm │ └── header.s ├── build.cfg ├── checksum.sha1 ├── splat-debug.yaml ├── splat-shift.yaml ├── splat.yaml ├── symbol_addrs.txt ├── undefined_funcs_auto.txt ├── undefined_syms.txt └── undefined_syms_auto.txt ├── pal ├── asm │ ├── bss3.s │ ├── header.s │ └── nonmatchings │ │ ├── 8a860_len_3f30 │ │ └── popup_menu_update.s │ │ ├── filemenu │ │ └── filemenu_createfile │ │ │ └── filemenu_draw_contents_choose_name.s │ │ ├── msg │ │ └── msg_copy_to_print_buffer.s │ │ ├── msg_draw │ │ └── appendGfx_message.s │ │ ├── pause │ │ ├── pause_items │ │ │ └── pause_items_draw_contents.s │ │ └── pause_stats │ │ │ └── pause_stats_draw_contents.s │ │ └── world │ │ └── area_mgm │ │ ├── mgm_00 │ │ └── mgm_00_3_scoreboard │ │ │ └── mgm_00_draw_record_display.s │ │ └── mgm_02 │ │ └── mgm_02_2_npc │ │ ├── mgm_02_RunMinigame.s │ │ └── mgm_02_SetBoxContents.s ├── checksum.sha1 ├── effects.yaml ├── splat-shift.yaml ├── splat.yaml ├── symbol_addrs.txt ├── undefined_funcs_auto.txt ├── undefined_syms.txt └── undefined_syms_auto.txt └── us ├── asm └── header.s ├── checksum.sha1 ├── splat-debug.yaml ├── splat-shift.yaml ├── splat.yaml ├── symbol_addrs.txt ├── undefined_funcs_auto.txt ├── undefined_syms.txt └── undefined_syms_auto.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- 1 | CompileFlags: 2 | Add: -Wno-unknown-warning-option 3 | Remove: [-m*, -f*] 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/Doxyfile -------------------------------------------------------------------------------- /DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/DoxygenLayout.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/README.md -------------------------------------------------------------------------------- /assets/dx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/dx/libgcc_vr4300.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/assets/dx/libgcc_vr4300.a -------------------------------------------------------------------------------- /assets/mod/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | python3 tools/build/configure.py "$@" 3 | -------------------------------------------------------------------------------- /docs/Documenting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/docs/Documenting.md -------------------------------------------------------------------------------- /docs/doxytheme/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/docs/doxytheme/footer.html -------------------------------------------------------------------------------- /docs/doxytheme/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/docs/doxytheme/header.html -------------------------------------------------------------------------------- /docs/doxytheme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/docs/doxytheme/theme.css -------------------------------------------------------------------------------- /docs/doxytheme/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/docs/doxytheme/theme.js -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/flake.nix -------------------------------------------------------------------------------- /include/PR/PRimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/PRimage.h -------------------------------------------------------------------------------- /include/PR/R4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/R4300.h -------------------------------------------------------------------------------- /include/PR/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/abi.h -------------------------------------------------------------------------------- /include/PR/bcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/bcp.h -------------------------------------------------------------------------------- /include/PR/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/controller.h -------------------------------------------------------------------------------- /include/PR/gbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/gbi.h -------------------------------------------------------------------------------- /include/PR/gs2dex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/gs2dex.h -------------------------------------------------------------------------------- /include/PR/gt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/gt.h -------------------------------------------------------------------------------- /include/PR/gu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/gu.h -------------------------------------------------------------------------------- /include/PR/guint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/guint.h -------------------------------------------------------------------------------- /include/PR/leo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/leo.h -------------------------------------------------------------------------------- /include/PR/leoappli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/leoappli.h -------------------------------------------------------------------------------- /include/PR/libaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/libaudio.h -------------------------------------------------------------------------------- /include/PR/mbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/mbi.h -------------------------------------------------------------------------------- /include/PR/n_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/n_abi.h -------------------------------------------------------------------------------- /include/PR/n_libaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/n_libaudio.h -------------------------------------------------------------------------------- /include/PR/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os.h -------------------------------------------------------------------------------- /include/PR/os_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_ai.h -------------------------------------------------------------------------------- /include/PR/os_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_cache.h -------------------------------------------------------------------------------- /include/PR/os_cont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_cont.h -------------------------------------------------------------------------------- /include/PR/os_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_convert.h -------------------------------------------------------------------------------- /include/PR/os_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_debug.h -------------------------------------------------------------------------------- /include/PR/os_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_eeprom.h -------------------------------------------------------------------------------- /include/PR/os_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_error.h -------------------------------------------------------------------------------- /include/PR/os_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_exception.h -------------------------------------------------------------------------------- /include/PR/os_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_flash.h -------------------------------------------------------------------------------- /include/PR/os_gbpak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_gbpak.h -------------------------------------------------------------------------------- /include/PR/os_gio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_gio.h -------------------------------------------------------------------------------- /include/PR/os_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_host.h -------------------------------------------------------------------------------- /include/PR/os_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_internal.h -------------------------------------------------------------------------------- /include/PR/os_internal_gio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_internal_gio.h -------------------------------------------------------------------------------- /include/PR/os_internal_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_internal_reg.h -------------------------------------------------------------------------------- /include/PR/os_internal_rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_internal_rsp.h -------------------------------------------------------------------------------- /include/PR/os_internal_si.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_internal_si.h -------------------------------------------------------------------------------- /include/PR/os_internal_tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_internal_tlb.h -------------------------------------------------------------------------------- /include/PR/os_libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_libc.h -------------------------------------------------------------------------------- /include/PR/os_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_message.h -------------------------------------------------------------------------------- /include/PR/os_motor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_motor.h -------------------------------------------------------------------------------- /include/PR/os_pfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_pfs.h -------------------------------------------------------------------------------- /include/PR/os_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_pi.h -------------------------------------------------------------------------------- /include/PR/os_rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_rdp.h -------------------------------------------------------------------------------- /include/PR/os_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_reg.h -------------------------------------------------------------------------------- /include/PR/os_rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_rsp.h -------------------------------------------------------------------------------- /include/PR/os_si.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_si.h -------------------------------------------------------------------------------- /include/PR/os_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_system.h -------------------------------------------------------------------------------- /include/PR/os_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_thread.h -------------------------------------------------------------------------------- /include/PR/os_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_time.h -------------------------------------------------------------------------------- /include/PR/os_tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_tlb.h -------------------------------------------------------------------------------- /include/PR/os_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_version.h -------------------------------------------------------------------------------- /include/PR/os_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_vi.h -------------------------------------------------------------------------------- /include/PR/os_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/os_voice.h -------------------------------------------------------------------------------- /include/PR/osint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/osint.h -------------------------------------------------------------------------------- /include/PR/piint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/piint.h -------------------------------------------------------------------------------- /include/PR/ramrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/ramrom.h -------------------------------------------------------------------------------- /include/PR/rcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/rcp.h -------------------------------------------------------------------------------- /include/PR/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/rdb.h -------------------------------------------------------------------------------- /include/PR/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/region.h -------------------------------------------------------------------------------- /include/PR/rmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/rmon.h -------------------------------------------------------------------------------- /include/PR/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/sched.h -------------------------------------------------------------------------------- /include/PR/siint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/siint.h -------------------------------------------------------------------------------- /include/PR/sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/sp.h -------------------------------------------------------------------------------- /include/PR/sptask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/sptask.h -------------------------------------------------------------------------------- /include/PR/ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/ucode.h -------------------------------------------------------------------------------- /include/PR/ucode_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/ucode_debug.h -------------------------------------------------------------------------------- /include/PR/ultraerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/ultraerror.h -------------------------------------------------------------------------------- /include/PR/ultralog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/ultralog.h -------------------------------------------------------------------------------- /include/PR/ultratypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/ultratypes.h -------------------------------------------------------------------------------- /include/PR/viint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/PR/viint.h -------------------------------------------------------------------------------- /include/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/camera.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/common.h -------------------------------------------------------------------------------- /include/common_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/common_structs.h -------------------------------------------------------------------------------- /include/effect_shims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/effect_shims.h -------------------------------------------------------------------------------- /include/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/effects.h -------------------------------------------------------------------------------- /include/effects_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/effects_internal.h -------------------------------------------------------------------------------- /include/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/entity.h -------------------------------------------------------------------------------- /include/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/enums.h -------------------------------------------------------------------------------- /include/evt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/evt.h -------------------------------------------------------------------------------- /include/filemenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/filemenu.h -------------------------------------------------------------------------------- /include/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/functions.h -------------------------------------------------------------------------------- /include/gbi_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/gbi_custom.h -------------------------------------------------------------------------------- /include/imgfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/imgfx.h -------------------------------------------------------------------------------- /include/include_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/include_asm.h -------------------------------------------------------------------------------- /include/include_asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/include_asset.h -------------------------------------------------------------------------------- /include/inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/inventory.h -------------------------------------------------------------------------------- /include/item_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/item_entity.h -------------------------------------------------------------------------------- /include/libc/xstdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/libc/xstdio.h -------------------------------------------------------------------------------- /include/macro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/macro.inc -------------------------------------------------------------------------------- /include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/macros.h -------------------------------------------------------------------------------- /include/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/map.h -------------------------------------------------------------------------------- /include/mapfs/arn_02_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_02_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_02_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_02_shape.h -------------------------------------------------------------------------------- /include/mapfs/arn_03_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_03_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_03_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_03_shape.h -------------------------------------------------------------------------------- /include/mapfs/arn_04_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_04_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_04_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_04_shape.h -------------------------------------------------------------------------------- /include/mapfs/arn_05_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_05_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_05_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_05_shape.h -------------------------------------------------------------------------------- /include/mapfs/arn_07_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_07_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_07_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_07_shape.h -------------------------------------------------------------------------------- /include/mapfs/arn_08_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_08_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_08_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_08_shape.h -------------------------------------------------------------------------------- /include/mapfs/arn_09_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_09_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_09_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_09_shape.h -------------------------------------------------------------------------------- /include/mapfs/arn_10_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_10_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_10_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_10_shape.h -------------------------------------------------------------------------------- /include/mapfs/arn_11_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_11_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_11_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_11_shape.h -------------------------------------------------------------------------------- /include/mapfs/arn_12_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_12_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_12_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_12_shape.h -------------------------------------------------------------------------------- /include/mapfs/arn_13_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_13_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_13_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_13_shape.h -------------------------------------------------------------------------------- /include/mapfs/arn_20_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_20_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_20_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_20_shape.h -------------------------------------------------------------------------------- /include/mapfs/arn_bt01_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_bt01_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_bt02_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_bt02_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_bt03_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_bt03_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_bt04_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_bt04_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_bt05_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_bt05_hit.h -------------------------------------------------------------------------------- /include/mapfs/arn_bt06_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/arn_bt06_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_00_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_00_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_00_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_00_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_01_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_01_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_01_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_01_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_02_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_02_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_02_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_02_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_03_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_03_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_03_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_03_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_04_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_04_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_04_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_04_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_05_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_05_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_05_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_05_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_06_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_06_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_06_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_06_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_07_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_07_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_07_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_07_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_08_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_08_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_08_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_08_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_09_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_09_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_09_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_09_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_10_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_10_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_10_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_10_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_11_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_11_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_11_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_11_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_12_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_12_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_12_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_12_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_13_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_13_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_13_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_13_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_14_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_14_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_14_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_14_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_15_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_15_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_15_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_15_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_16_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_16_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_16_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_16_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_17_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_17_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_17_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_17_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_18_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_18_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_18_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_18_shape.h -------------------------------------------------------------------------------- /include/mapfs/dgb_bt01_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_bt01_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_bt02_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_bt02_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_bt03_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_bt03_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_bt04_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_bt04_hit.h -------------------------------------------------------------------------------- /include/mapfs/dgb_bt05_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dgb_bt05_hit.h -------------------------------------------------------------------------------- /include/mapfs/dro_01_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dro_01_hit.h -------------------------------------------------------------------------------- /include/mapfs/dro_01_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dro_01_shape.h -------------------------------------------------------------------------------- /include/mapfs/dro_02_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dro_02_hit.h -------------------------------------------------------------------------------- /include/mapfs/dro_02_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/dro_02_shape.h -------------------------------------------------------------------------------- /include/mapfs/end_00_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/end_00_hit.h -------------------------------------------------------------------------------- /include/mapfs/end_00_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/end_00_shape.h -------------------------------------------------------------------------------- /include/mapfs/end_01_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/end_01_hit.h -------------------------------------------------------------------------------- /include/mapfs/end_01_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/end_01_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_00_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_00_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_00_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_00_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_03_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_03_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_03_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_03_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_07_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_07_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_07_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_07_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_08_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_08_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_08_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_08_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_09_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_09_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_09_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_09_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_10_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_10_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_10_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_10_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_11_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_11_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_11_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_11_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_12_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_12_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_12_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_12_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_13_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_13_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_13_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_13_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_14_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_14_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_14_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_14_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_15_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_15_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_15_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_15_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_16_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_16_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_16_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_16_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_17_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_17_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_17_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_17_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_18_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_18_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_18_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_18_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_19_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_19_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_19_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_19_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_21_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_21_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_21_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_21_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_22_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_22_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_22_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_22_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_23_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_23_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_23_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_23_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_24_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_24_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_24_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_24_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_25_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_25_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_25_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_25_shape.h -------------------------------------------------------------------------------- /include/mapfs/flo_bt01_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_bt01_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_bt02_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_bt02_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_bt03_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_bt03_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_bt04_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_bt04_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_bt05_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_bt05_hit.h -------------------------------------------------------------------------------- /include/mapfs/flo_bt06_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/flo_bt06_hit.h -------------------------------------------------------------------------------- /include/mapfs/gv_01_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/gv_01_hit.h -------------------------------------------------------------------------------- /include/mapfs/gv_01_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/gv_01_shape.h -------------------------------------------------------------------------------- /include/mapfs/hos_00_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_00_hit.h -------------------------------------------------------------------------------- /include/mapfs/hos_00_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_00_shape.h -------------------------------------------------------------------------------- /include/mapfs/hos_01_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_01_hit.h -------------------------------------------------------------------------------- /include/mapfs/hos_01_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_01_shape.h -------------------------------------------------------------------------------- /include/mapfs/hos_02_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_02_hit.h -------------------------------------------------------------------------------- /include/mapfs/hos_02_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_02_shape.h -------------------------------------------------------------------------------- /include/mapfs/hos_03_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_03_hit.h -------------------------------------------------------------------------------- /include/mapfs/hos_03_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_03_shape.h -------------------------------------------------------------------------------- /include/mapfs/hos_04_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_04_hit.h -------------------------------------------------------------------------------- /include/mapfs/hos_04_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_04_shape.h -------------------------------------------------------------------------------- /include/mapfs/hos_05_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_05_hit.h -------------------------------------------------------------------------------- /include/mapfs/hos_05_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_05_shape.h -------------------------------------------------------------------------------- /include/mapfs/hos_06_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_06_hit.h -------------------------------------------------------------------------------- /include/mapfs/hos_06_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_06_shape.h -------------------------------------------------------------------------------- /include/mapfs/hos_10_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_10_hit.h -------------------------------------------------------------------------------- /include/mapfs/hos_10_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_10_shape.h -------------------------------------------------------------------------------- /include/mapfs/hos_20_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_20_hit.h -------------------------------------------------------------------------------- /include/mapfs/hos_20_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_20_shape.h -------------------------------------------------------------------------------- /include/mapfs/hos_bt01_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_bt01_hit.h -------------------------------------------------------------------------------- /include/mapfs/hos_bt02_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/hos_bt02_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_01_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_01_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_01_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_01_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_02_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_02_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_02_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_02_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_03_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_03_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_03_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_03_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_04_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_04_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_04_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_04_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_05_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_05_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_05_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_05_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_06_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_06_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_06_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_06_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_07_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_07_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_07_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_07_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_08_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_08_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_08_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_08_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_09_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_09_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_09_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_09_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_10_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_10_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_10_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_10_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_11_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_11_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_11_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_11_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_12_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_12_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_12_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_12_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_13_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_13_hit.h -------------------------------------------------------------------------------- /include/mapfs/isk_13_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_13_shape.h -------------------------------------------------------------------------------- /include/mapfs/isk_14_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/isk_14_hit.h -------------------------------------------------------------------------------- /include/mapfs/machi_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mapfs/machi_hit.h -------------------------------------------------------------------------------- /include/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/messages.h -------------------------------------------------------------------------------- /include/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/mips.h -------------------------------------------------------------------------------- /include/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/model.h -------------------------------------------------------------------------------- /include/move_addu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/move_addu.inc -------------------------------------------------------------------------------- /include/npc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/npc.h -------------------------------------------------------------------------------- /include/nu/nualsgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/nu/nualsgi.h -------------------------------------------------------------------------------- /include/nu/nusys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/nu/nusys.h -------------------------------------------------------------------------------- /include/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/overlay.h -------------------------------------------------------------------------------- /include/qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/qsort.h -------------------------------------------------------------------------------- /include/rumble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/rumble.h -------------------------------------------------------------------------------- /include/script_api/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/script_api/map.h -------------------------------------------------------------------------------- /include/sparkle_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/sparkle_script.h -------------------------------------------------------------------------------- /include/star_rod_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/star_rod_macros.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/types.h -------------------------------------------------------------------------------- /include/ultra64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/ultra64.h -------------------------------------------------------------------------------- /include/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/variables.h -------------------------------------------------------------------------------- /include/vars_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/include/vars_access.h -------------------------------------------------------------------------------- /manual/assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/manual/assets.md -------------------------------------------------------------------------------- /manual/gdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/manual/gdb.md -------------------------------------------------------------------------------- /manual/gh-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/manual/gh-actions.md -------------------------------------------------------------------------------- /manual/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/manual/introduction.md -------------------------------------------------------------------------------- /manual/setup-dx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/manual/setup-dx.sh -------------------------------------------------------------------------------- /manual/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/manual/setup.md -------------------------------------------------------------------------------- /manual/star-rod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/manual/star-rod.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/requirements_extra.txt -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/run -------------------------------------------------------------------------------- /src/101b90_len_8f0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/101b90_len_8f0.c -------------------------------------------------------------------------------- /src/23680.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/23680.c -------------------------------------------------------------------------------- /src/25AF0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/25AF0.c -------------------------------------------------------------------------------- /src/38F00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/38F00.c -------------------------------------------------------------------------------- /src/43F0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/43F0.c -------------------------------------------------------------------------------- /src/5B320.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/5B320.c -------------------------------------------------------------------------------- /src/77480.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/77480.c -------------------------------------------------------------------------------- /src/7B440.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/7B440.c -------------------------------------------------------------------------------- /src/7BB60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/7BB60.c -------------------------------------------------------------------------------- /src/7E9D0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/7E9D0.c -------------------------------------------------------------------------------- /src/8a860_len_3f30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/8a860_len_3f30.c -------------------------------------------------------------------------------- /src/animation_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/animation_script.h -------------------------------------------------------------------------------- /src/animator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/animator.c -------------------------------------------------------------------------------- /src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio.h -------------------------------------------------------------------------------- /src/audio/ambience.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/ambience.c -------------------------------------------------------------------------------- /src/audio/bgm_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/bgm_control.c -------------------------------------------------------------------------------- /src/audio/bgm_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/bgm_player.c -------------------------------------------------------------------------------- /src/audio/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/core.h -------------------------------------------------------------------------------- /src/audio/core/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/core/engine.c -------------------------------------------------------------------------------- /src/audio/core/reverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/core/reverb.c -------------------------------------------------------------------------------- /src/audio/core/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/core/system.c -------------------------------------------------------------------------------- /src/audio/core/voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/core/voice.c -------------------------------------------------------------------------------- /src/audio/load_banks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/load_banks.c -------------------------------------------------------------------------------- /src/audio/mseq_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/mseq_player.c -------------------------------------------------------------------------------- /src/audio/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/private.h -------------------------------------------------------------------------------- /src/audio/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/public.h -------------------------------------------------------------------------------- /src/audio/sfx_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/sfx_control.c -------------------------------------------------------------------------------- /src/audio/sfx_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/sfx_player.c -------------------------------------------------------------------------------- /src/audio/snd_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/audio/snd_interface.c -------------------------------------------------------------------------------- /src/background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/background.c -------------------------------------------------------------------------------- /src/background_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/background_gfx.c -------------------------------------------------------------------------------- /src/battle/16C8E0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/16C8E0.c -------------------------------------------------------------------------------- /src/battle/181810.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/181810.c -------------------------------------------------------------------------------- /src/battle/190A10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/190A10.c -------------------------------------------------------------------------------- /src/battle/190B20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/190B20.c -------------------------------------------------------------------------------- /src/battle/1A5830.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/1A5830.c -------------------------------------------------------------------------------- /src/battle/action_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/action_cmd.c -------------------------------------------------------------------------------- /src/battle/action_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/action_cmd.h -------------------------------------------------------------------------------- /src/battle/actor_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/actor_api.c -------------------------------------------------------------------------------- /src/battle/actors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/actors.c -------------------------------------------------------------------------------- /src/battle/actors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/actors.yaml -------------------------------------------------------------------------------- /src/battle/actors_jp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/actors_jp.yaml -------------------------------------------------------------------------------- /src/battle/battle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/battle.cpp -------------------------------------------------------------------------------- /src/battle/battle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/battle.h -------------------------------------------------------------------------------- /src/battle/battle_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/battle_menu.h -------------------------------------------------------------------------------- /src/battle/battle_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/battle_names.h -------------------------------------------------------------------------------- /src/battle/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/camera.c -------------------------------------------------------------------------------- /src/battle/dmg_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/dmg_item.c -------------------------------------------------------------------------------- /src/battle/dmg_partner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/dmg_partner.c -------------------------------------------------------------------------------- /src/battle/dmg_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/dmg_player.c -------------------------------------------------------------------------------- /src/battle/menu_moves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/menu_moves.c -------------------------------------------------------------------------------- /src/battle/menu_strats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/menu_strats.c -------------------------------------------------------------------------------- /src/battle/partner/bow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/partner/bow.c -------------------------------------------------------------------------------- /src/battle/partner/watt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/partner/watt.c -------------------------------------------------------------------------------- /src/battle/partner_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/partner_dma.c -------------------------------------------------------------------------------- /src/battle/stage_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/stage_names.h -------------------------------------------------------------------------------- /src/battle/use_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/use_items.c -------------------------------------------------------------------------------- /src/battle/use_moves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle/use_moves.c -------------------------------------------------------------------------------- /src/battle_hud_scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle_hud_scripts.h -------------------------------------------------------------------------------- /src/battle_ui_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/battle_ui_gfx.c -------------------------------------------------------------------------------- /src/boot/entry_point.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/boot/entry_point.s -------------------------------------------------------------------------------- /src/boot/ipl3_boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/boot/ipl3_boot.s -------------------------------------------------------------------------------- /src/cam_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/cam_main.c -------------------------------------------------------------------------------- /src/cam_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/cam_math.c -------------------------------------------------------------------------------- /src/cam_mode_interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/cam_mode_interp.c -------------------------------------------------------------------------------- /src/cam_mode_minimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/cam_mode_minimal.c -------------------------------------------------------------------------------- /src/cam_mode_no_interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/cam_mode_no_interp.c -------------------------------------------------------------------------------- /src/charset/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/charset/charset.c -------------------------------------------------------------------------------- /src/charset/charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/charset/charset.h -------------------------------------------------------------------------------- /src/collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/collision.c -------------------------------------------------------------------------------- /src/collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/collision.h -------------------------------------------------------------------------------- /src/common/AddFP.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/common/AddFP.inc.c -------------------------------------------------------------------------------- /src/common/AddHP.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/common/AddHP.inc.c -------------------------------------------------------------------------------- /src/common/Dist3D.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/common/Dist3D.inc.c -------------------------------------------------------------------------------- /src/common/MakeSun.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/common/MakeSun.inc.c -------------------------------------------------------------------------------- /src/common/SpitInk.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/common/SpitInk.inc.c -------------------------------------------------------------------------------- /src/common/foliage.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/common/foliage.inc.c -------------------------------------------------------------------------------- /src/crash_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/crash_screen.c -------------------------------------------------------------------------------- /src/curtains.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/curtains.c -------------------------------------------------------------------------------- /src/draw_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/draw_box.c -------------------------------------------------------------------------------- /src/draw_img_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/draw_img_util.c -------------------------------------------------------------------------------- /src/dx/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/dx/backtrace.c -------------------------------------------------------------------------------- /src/dx/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/dx/backtrace.h -------------------------------------------------------------------------------- /src/dx/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/dx/config.h -------------------------------------------------------------------------------- /src/dx/debug_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/dx/debug_menu.c -------------------------------------------------------------------------------- /src/dx/debug_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/dx/debug_menu.h -------------------------------------------------------------------------------- /src/dx/profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/dx/profiling.c -------------------------------------------------------------------------------- /src/dx/profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/dx/profiling.h -------------------------------------------------------------------------------- /src/dx/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/dx/utils.c -------------------------------------------------------------------------------- /src/dx/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/dx/utils.h -------------------------------------------------------------------------------- /src/dx/versioning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/dx/versioning.c -------------------------------------------------------------------------------- /src/dx/versioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/dx/versioning.h -------------------------------------------------------------------------------- /src/effect_shims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effect_shims.yaml -------------------------------------------------------------------------------- /src/effect_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effect_utils.c -------------------------------------------------------------------------------- /src/effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects.c -------------------------------------------------------------------------------- /src/effects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects.yaml -------------------------------------------------------------------------------- /src/effects/aura.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/aura.c -------------------------------------------------------------------------------- /src/effects/balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/balloon.c -------------------------------------------------------------------------------- /src/effects/blast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/blast.c -------------------------------------------------------------------------------- /src/effects/bulb_glow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/bulb_glow.c -------------------------------------------------------------------------------- /src/effects/butterflies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/butterflies.c -------------------------------------------------------------------------------- /src/effects/chomp_drop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/chomp_drop.c -------------------------------------------------------------------------------- /src/effects/cloud_puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/cloud_puff.c -------------------------------------------------------------------------------- /src/effects/cloud_trail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/cloud_trail.c -------------------------------------------------------------------------------- /src/effects/cold_breath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/cold_breath.c -------------------------------------------------------------------------------- /src/effects/confetti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/confetti.c -------------------------------------------------------------------------------- /src/effects/debuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/debuff.c -------------------------------------------------------------------------------- /src/effects/disable_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/disable_x.c -------------------------------------------------------------------------------- /src/effects/drop_leaves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/drop_leaves.c -------------------------------------------------------------------------------- /src/effects/dust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/dust.c -------------------------------------------------------------------------------- /src/effects/effect_3D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/effect_3D.c -------------------------------------------------------------------------------- /src/effects/effect_46.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/effect_46.c -------------------------------------------------------------------------------- /src/effects/effect_63.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/effect_63.c -------------------------------------------------------------------------------- /src/effects/effect_65.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/effect_65.c -------------------------------------------------------------------------------- /src/effects/effect_75.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/effect_75.c -------------------------------------------------------------------------------- /src/effects/effect_86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/effect_86.c -------------------------------------------------------------------------------- /src/effects/embers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/embers.c -------------------------------------------------------------------------------- /src/effects/emote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/emote.c -------------------------------------------------------------------------------- /src/effects/explosion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/explosion.c -------------------------------------------------------------------------------- /src/effects/fire_breath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/fire_breath.c -------------------------------------------------------------------------------- /src/effects/fire_flower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/fire_flower.c -------------------------------------------------------------------------------- /src/effects/firework.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/firework.c -------------------------------------------------------------------------------- /src/effects/flame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/flame.c -------------------------------------------------------------------------------- /src/effects/footprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/footprint.c -------------------------------------------------------------------------------- /src/effects/fright_jar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/fright_jar.c -------------------------------------------------------------------------------- /src/effects/gfx/aura.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/aura.c -------------------------------------------------------------------------------- /src/effects/gfx/balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/balloon.c -------------------------------------------------------------------------------- /src/effects/gfx/blast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/blast.c -------------------------------------------------------------------------------- /src/effects/gfx/debuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/debuff.c -------------------------------------------------------------------------------- /src/effects/gfx/dust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/dust.c -------------------------------------------------------------------------------- /src/effects/gfx/embers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/embers.c -------------------------------------------------------------------------------- /src/effects/gfx/emote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/emote.c -------------------------------------------------------------------------------- /src/effects/gfx/flame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/flame.c -------------------------------------------------------------------------------- /src/effects/gfx/recover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/recover.c -------------------------------------------------------------------------------- /src/effects/gfx/squirt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/squirt.c -------------------------------------------------------------------------------- /src/effects/gfx/star.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/star.c -------------------------------------------------------------------------------- /src/effects/gfx/sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/sun.c -------------------------------------------------------------------------------- /src/effects/gfx/sweat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/gfx/sweat.c -------------------------------------------------------------------------------- /src/effects/hieroglyphs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/hieroglyphs.c -------------------------------------------------------------------------------- /src/effects/ice_pillar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/ice_pillar.c -------------------------------------------------------------------------------- /src/effects/ice_shard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/ice_shard.c -------------------------------------------------------------------------------- /src/effects/lens_flare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/lens_flare.c -------------------------------------------------------------------------------- /src/effects/light_rays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/light_rays.c -------------------------------------------------------------------------------- /src/effects/lightning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/lightning.c -------------------------------------------------------------------------------- /src/effects/lil_oink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/lil_oink.c -------------------------------------------------------------------------------- /src/effects/music_note.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/music_note.c -------------------------------------------------------------------------------- /src/effects/purple_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/purple_ring.c -------------------------------------------------------------------------------- /src/effects/recover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/recover.c -------------------------------------------------------------------------------- /src/effects/red_impact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/red_impact.c -------------------------------------------------------------------------------- /src/effects/ring_blast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/ring_blast.c -------------------------------------------------------------------------------- /src/effects/shape_spell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/shape_spell.c -------------------------------------------------------------------------------- /src/effects/shiny_flare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/shiny_flare.c -------------------------------------------------------------------------------- /src/effects/shockwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/shockwave.c -------------------------------------------------------------------------------- /src/effects/smoke_burst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/smoke_burst.c -------------------------------------------------------------------------------- /src/effects/smoke_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/smoke_ring.c -------------------------------------------------------------------------------- /src/effects/snowfall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/snowfall.c -------------------------------------------------------------------------------- /src/effects/snowflake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/snowflake.c -------------------------------------------------------------------------------- /src/effects/sparkles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/sparkles.c -------------------------------------------------------------------------------- /src/effects/spirit_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/spirit_card.c -------------------------------------------------------------------------------- /src/effects/squirt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/squirt.c -------------------------------------------------------------------------------- /src/effects/star.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/star.c -------------------------------------------------------------------------------- /src/effects/stars_burst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/stars_burst.c -------------------------------------------------------------------------------- /src/effects/stat_change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/stat_change.c -------------------------------------------------------------------------------- /src/effects/steam_burst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/steam_burst.c -------------------------------------------------------------------------------- /src/effects/stop_watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/stop_watch.c -------------------------------------------------------------------------------- /src/effects/sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/sun.c -------------------------------------------------------------------------------- /src/effects/sweat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/sweat.c -------------------------------------------------------------------------------- /src/effects/throw_spiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/throw_spiny.c -------------------------------------------------------------------------------- /src/effects/underwater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/underwater.c -------------------------------------------------------------------------------- /src/effects/water_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/water_block.c -------------------------------------------------------------------------------- /src/effects/waterfall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/waterfall.c -------------------------------------------------------------------------------- /src/effects/whirlwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/effects/whirlwind.c -------------------------------------------------------------------------------- /src/encounter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/encounter.c -------------------------------------------------------------------------------- /src/encounter_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/encounter_api.c -------------------------------------------------------------------------------- /src/entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity.c -------------------------------------------------------------------------------- /src/entity/Block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/Block.c -------------------------------------------------------------------------------- /src/entity/BlueWarpPipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/BlueWarpPipe.c -------------------------------------------------------------------------------- /src/entity/Chest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/Chest.c -------------------------------------------------------------------------------- /src/entity/HeartBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/HeartBlock.c -------------------------------------------------------------------------------- /src/entity/HiddenPanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/HiddenPanel.c -------------------------------------------------------------------------------- /src/entity/ItemBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/ItemBlock.c -------------------------------------------------------------------------------- /src/entity/SaveBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/SaveBlock.c -------------------------------------------------------------------------------- /src/entity/Shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/Shadow.c -------------------------------------------------------------------------------- /src/entity/Signpost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/Signpost.c -------------------------------------------------------------------------------- /src/entity/SimpleSpring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/SimpleSpring.c -------------------------------------------------------------------------------- /src/entity/SuperBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/SuperBlock.c -------------------------------------------------------------------------------- /src/entity/Switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/Switch.c -------------------------------------------------------------------------------- /src/entity/WoodenCrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/WoodenCrate.c -------------------------------------------------------------------------------- /src/entity/model/Chest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity/model/Chest.c -------------------------------------------------------------------------------- /src/entity_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/entity_model.c -------------------------------------------------------------------------------- /src/evt/audio_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/audio_api.c -------------------------------------------------------------------------------- /src/evt/cam_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/cam_api.c -------------------------------------------------------------------------------- /src/evt/demo_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/demo_api.c -------------------------------------------------------------------------------- /src/evt/evt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/evt.c -------------------------------------------------------------------------------- /src/evt/f8f60_len_1560.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/f8f60_len_1560.c -------------------------------------------------------------------------------- /src/evt/fx_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/fx_api.c -------------------------------------------------------------------------------- /src/evt/item_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/item_api.c -------------------------------------------------------------------------------- /src/evt/map_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/map_api.c -------------------------------------------------------------------------------- /src/evt/model_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/model_api.c -------------------------------------------------------------------------------- /src/evt/msg_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/msg_api.c -------------------------------------------------------------------------------- /src/evt/msg_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/msg_api.h -------------------------------------------------------------------------------- /src/evt/npc_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/npc_api.c -------------------------------------------------------------------------------- /src/evt/player_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/player_api.c -------------------------------------------------------------------------------- /src/evt/script_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/script_list.c -------------------------------------------------------------------------------- /src/evt/virtual_entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/evt/virtual_entity.c -------------------------------------------------------------------------------- /src/fio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/fio.c -------------------------------------------------------------------------------- /src/fio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/fio.h -------------------------------------------------------------------------------- /src/foliage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/foliage.cpp -------------------------------------------------------------------------------- /src/foliage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/foliage.hpp -------------------------------------------------------------------------------- /src/game_modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/game_modes.c -------------------------------------------------------------------------------- /src/game_modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/game_modes.h -------------------------------------------------------------------------------- /src/gcc/divdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/gcc/divdi3.c -------------------------------------------------------------------------------- /src/gcc/moddi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/gcc/moddi3.c -------------------------------------------------------------------------------- /src/gcc/udivdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/gcc/udivdi3.c -------------------------------------------------------------------------------- /src/gcc/udivmoddi4.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/gcc/udivmoddi4.inc.c -------------------------------------------------------------------------------- /src/gcc/umoddi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/gcc/umoddi3.c -------------------------------------------------------------------------------- /src/global_hud_scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/global_hud_scripts.c -------------------------------------------------------------------------------- /src/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/heap.c -------------------------------------------------------------------------------- /src/heaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/heaps.c -------------------------------------------------------------------------------- /src/heaps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/heaps2.c -------------------------------------------------------------------------------- /src/heaps3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/heaps3.c -------------------------------------------------------------------------------- /src/hud_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/hud_element.c -------------------------------------------------------------------------------- /src/hud_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/hud_element.h -------------------------------------------------------------------------------- /src/i_spy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/i_spy.c -------------------------------------------------------------------------------- /src/imgfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/imgfx.c -------------------------------------------------------------------------------- /src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/input.c -------------------------------------------------------------------------------- /src/inspect_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/inspect_icon.c -------------------------------------------------------------------------------- /src/inventory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/inventory.c -------------------------------------------------------------------------------- /src/is_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/is_debug.c -------------------------------------------------------------------------------- /src/item_entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/item_entity.c -------------------------------------------------------------------------------- /src/item_table.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/item_table.yaml -------------------------------------------------------------------------------- /src/level_up.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/level_up.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/main_loop.c -------------------------------------------------------------------------------- /src/main_pre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/main_pre.c -------------------------------------------------------------------------------- /src/map_shape.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/map_shape.ld -------------------------------------------------------------------------------- /src/menu_hud_scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/menu_hud_scripts.c -------------------------------------------------------------------------------- /src/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/model.c -------------------------------------------------------------------------------- /src/move_table.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/move_table.yaml -------------------------------------------------------------------------------- /src/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/msg.c -------------------------------------------------------------------------------- /src/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/msg.h -------------------------------------------------------------------------------- /src/msg_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/msg_data.c -------------------------------------------------------------------------------- /src/msg_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/msg_draw.c -------------------------------------------------------------------------------- /src/msg_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/msg_img.c -------------------------------------------------------------------------------- /src/npc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/npc.c -------------------------------------------------------------------------------- /src/npc_collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/npc_collision.c -------------------------------------------------------------------------------- /src/npc_follow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/npc_follow.c -------------------------------------------------------------------------------- /src/obfuscation_shims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/obfuscation_shims.c -------------------------------------------------------------------------------- /src/os/__osDisableInt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/__osDisableInt.s -------------------------------------------------------------------------------- /src/os/__osGetCause.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/__osGetCause.s -------------------------------------------------------------------------------- /src/os/__osGetSR.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/__osGetSR.s -------------------------------------------------------------------------------- /src/os/__osProbeTLB.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/__osProbeTLB.s -------------------------------------------------------------------------------- /src/os/__osRestoreInt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/__osRestoreInt.s -------------------------------------------------------------------------------- /src/os/__osSetCompare.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/__osSetCompare.s -------------------------------------------------------------------------------- /src/os/__osSetWatchLo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/__osSetWatchLo.s -------------------------------------------------------------------------------- /src/os/_getcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/_getcount.c -------------------------------------------------------------------------------- /src/os/_setcompare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/_setcompare.c -------------------------------------------------------------------------------- /src/os/afterprenmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/afterprenmi.c -------------------------------------------------------------------------------- /src/os/ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/ai.c -------------------------------------------------------------------------------- /src/os/aigetlength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/aigetlength.c -------------------------------------------------------------------------------- /src/os/aigetstatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/aigetstatus.c -------------------------------------------------------------------------------- /src/os/aisetfrequency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/aisetfrequency.c -------------------------------------------------------------------------------- /src/os/aisetnextbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/aisetnextbuf.c -------------------------------------------------------------------------------- /src/os/bcmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/bcmp.s -------------------------------------------------------------------------------- /src/os/bcopy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/bcopy.s -------------------------------------------------------------------------------- /src/os/bzero.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/bzero.s -------------------------------------------------------------------------------- /src/os/cartrominit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/cartrominit.c -------------------------------------------------------------------------------- /src/os/contpfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/contpfs.c -------------------------------------------------------------------------------- /src/os/contquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/contquery.c -------------------------------------------------------------------------------- /src/os/contramread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/contramread.c -------------------------------------------------------------------------------- /src/os/contramwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/contramwrite.c -------------------------------------------------------------------------------- /src/os/contreaddata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/contreaddata.c -------------------------------------------------------------------------------- /src/os/controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/controller.c -------------------------------------------------------------------------------- /src/os/coss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/coss.c -------------------------------------------------------------------------------- /src/os/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/crc.c -------------------------------------------------------------------------------- /src/os/createmesgqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/createmesgqueue.c -------------------------------------------------------------------------------- /src/os/createthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/createthread.c -------------------------------------------------------------------------------- /src/os/decode_yay0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/decode_yay0.s -------------------------------------------------------------------------------- /src/os/destroythread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/destroythread.c -------------------------------------------------------------------------------- /src/os/devmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/devmgr.c -------------------------------------------------------------------------------- /src/os/epidma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/epidma.c -------------------------------------------------------------------------------- /src/os/epilinkhandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/epilinkhandle.c -------------------------------------------------------------------------------- /src/os/epirawdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/epirawdma.c -------------------------------------------------------------------------------- /src/os/epirawread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/epirawread.c -------------------------------------------------------------------------------- /src/os/epirawwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/epirawwrite.c -------------------------------------------------------------------------------- /src/os/epiread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/epiread.c -------------------------------------------------------------------------------- /src/os/epiwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/epiwrite.c -------------------------------------------------------------------------------- /src/os/exceptasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/exceptasm.s -------------------------------------------------------------------------------- /src/os/flashreadarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/flashreadarray.c -------------------------------------------------------------------------------- /src/os/flashsectorerase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/flashsectorerase.c -------------------------------------------------------------------------------- /src/os/flashwritearray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/flashwritearray.c -------------------------------------------------------------------------------- /src/os/flashwritebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/flashwritebuffer.c -------------------------------------------------------------------------------- /src/os/frustum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/frustum.c -------------------------------------------------------------------------------- /src/os/getactivequeue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/getactivequeue.c -------------------------------------------------------------------------------- /src/os/getthreadpri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/getthreadpri.c -------------------------------------------------------------------------------- /src/os/gettime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/gettime.c -------------------------------------------------------------------------------- /src/os/guLookAt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guLookAt.c -------------------------------------------------------------------------------- /src/os/guMtxCat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guMtxCat.c -------------------------------------------------------------------------------- /src/os/guMtxCat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guMtxCat.s -------------------------------------------------------------------------------- /src/os/guMtxCatF.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guMtxCatF.s -------------------------------------------------------------------------------- /src/os/guMtxF2L.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guMtxF2L.s -------------------------------------------------------------------------------- /src/os/guMtxIdent.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guMtxIdent.s -------------------------------------------------------------------------------- /src/os/guMtxIdentF.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guMtxIdentF.s -------------------------------------------------------------------------------- /src/os/guMtxL2F.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guMtxL2F.s -------------------------------------------------------------------------------- /src/os/guMtxXFMF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guMtxXFMF.c -------------------------------------------------------------------------------- /src/os/guMtxXFML.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guMtxXFML.c -------------------------------------------------------------------------------- /src/os/guNormalize.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guNormalize.s -------------------------------------------------------------------------------- /src/os/guOrtho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guOrtho.c -------------------------------------------------------------------------------- /src/os/guRotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guRotate.c -------------------------------------------------------------------------------- /src/os/guScale.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guScale.s -------------------------------------------------------------------------------- /src/os/guScaleF.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guScaleF.s -------------------------------------------------------------------------------- /src/os/guTranslate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guTranslate.s -------------------------------------------------------------------------------- /src/os/guTranslateF.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/guTranslateF.s -------------------------------------------------------------------------------- /src/os/initialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/initialize.c -------------------------------------------------------------------------------- /src/os/jammesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/jammesg.c -------------------------------------------------------------------------------- /src/os/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/ldiv.c -------------------------------------------------------------------------------- /src/os/lookathil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/lookathil.c -------------------------------------------------------------------------------- /src/os/lookatref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/lookatref.c -------------------------------------------------------------------------------- /src/os/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/memset.c -------------------------------------------------------------------------------- /src/os/motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/motor.c -------------------------------------------------------------------------------- /src/os/nusys/nuboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/nusys/nuboot.c -------------------------------------------------------------------------------- /src/os/nusys/nucontinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/nusys/nucontinit.c -------------------------------------------------------------------------------- /src/os/nusys/nucontmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/nusys/nucontmgr.c -------------------------------------------------------------------------------- /src/os/nusys/nugfxinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/nusys/nugfxinit.c -------------------------------------------------------------------------------- /src/os/nusys/nupiinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/nusys/nupiinit.c -------------------------------------------------------------------------------- /src/os/nusys/nusched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/nusys/nusched.c -------------------------------------------------------------------------------- /src/os/nusys/nusimgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/nusys/nusimgr.c -------------------------------------------------------------------------------- /src/os/osFlash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/osFlash.c -------------------------------------------------------------------------------- /src/os/osGetCount.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/osGetCount.s -------------------------------------------------------------------------------- /src/os/osInvalDCache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/osInvalDCache.s -------------------------------------------------------------------------------- /src/os/osInvalICache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/osInvalICache.s -------------------------------------------------------------------------------- /src/os/osMapTLB.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/osMapTLB.s -------------------------------------------------------------------------------- /src/os/osMapTLBRdb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/osMapTLBRdb.s -------------------------------------------------------------------------------- /src/os/osSetIntMask.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/osSetIntMask.s -------------------------------------------------------------------------------- /src/os/osSiDeviceBusy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/osSiDeviceBusy.c -------------------------------------------------------------------------------- /src/os/osUnmapTLB.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/osUnmapTLB.s -------------------------------------------------------------------------------- /src/os/osUnmapTLBAll.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/osUnmapTLBAll.s -------------------------------------------------------------------------------- /src/os/padding.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/padding.s -------------------------------------------------------------------------------- /src/os/padding_alt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/padding_alt.s -------------------------------------------------------------------------------- /src/os/parameters.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/parameters.s -------------------------------------------------------------------------------- /src/os/perspective.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/perspective.c -------------------------------------------------------------------------------- /src/os/pfsallocatefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfsallocatefile.c -------------------------------------------------------------------------------- /src/os/pfschecker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfschecker.c -------------------------------------------------------------------------------- /src/os/pfsdeletefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfsdeletefile.c -------------------------------------------------------------------------------- /src/os/pfsfilestate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfsfilestate.c -------------------------------------------------------------------------------- /src/os/pfsfindfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfsfindfile.c -------------------------------------------------------------------------------- /src/os/pfsfreeblocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfsfreeblocks.c -------------------------------------------------------------------------------- /src/os/pfsgetstatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfsgetstatus.c -------------------------------------------------------------------------------- /src/os/pfsinitpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfsinitpak.c -------------------------------------------------------------------------------- /src/os/pfsisplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfsisplug.c -------------------------------------------------------------------------------- /src/os/pfsnumfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfsnumfiles.c -------------------------------------------------------------------------------- /src/os/pfsreadwritefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfsreadwritefile.c -------------------------------------------------------------------------------- /src/os/pfsrepairid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfsrepairid.c -------------------------------------------------------------------------------- /src/os/pfssearchfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfssearchfile.c -------------------------------------------------------------------------------- /src/os/pfsselectbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pfsselectbank.c -------------------------------------------------------------------------------- /src/os/piacs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/piacs.c -------------------------------------------------------------------------------- /src/os/pigetcmdq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pigetcmdq.c -------------------------------------------------------------------------------- /src/os/pimgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pimgr.c -------------------------------------------------------------------------------- /src/os/pirawdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/pirawdma.c -------------------------------------------------------------------------------- /src/os/position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/position.c -------------------------------------------------------------------------------- /src/os/recvmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/recvmesg.c -------------------------------------------------------------------------------- /src/os/rotateRPY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/rotateRPY.c -------------------------------------------------------------------------------- /src/os/sendmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sendmesg.c -------------------------------------------------------------------------------- /src/os/seteventmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/seteventmesg.c -------------------------------------------------------------------------------- /src/os/setfpccsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/setfpccsr.s -------------------------------------------------------------------------------- /src/os/setglobalintmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/setglobalintmask.c -------------------------------------------------------------------------------- /src/os/setsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/setsr.s -------------------------------------------------------------------------------- /src/os/setthreadpri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/setthreadpri.c -------------------------------------------------------------------------------- /src/os/settime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/settime.c -------------------------------------------------------------------------------- /src/os/settimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/settimer.c -------------------------------------------------------------------------------- /src/os/si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/si.c -------------------------------------------------------------------------------- /src/os/siacs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/siacs.c -------------------------------------------------------------------------------- /src/os/sins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sins.c -------------------------------------------------------------------------------- /src/os/sintable.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sintable.inc.c -------------------------------------------------------------------------------- /src/os/sirawdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sirawdma.c -------------------------------------------------------------------------------- /src/os/sirawread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sirawread.c -------------------------------------------------------------------------------- /src/os/sirawwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sirawwrite.c -------------------------------------------------------------------------------- /src/os/skapi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/skapi.s -------------------------------------------------------------------------------- /src/os/sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sp.c -------------------------------------------------------------------------------- /src/os/spgetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/spgetstat.c -------------------------------------------------------------------------------- /src/os/sprawdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sprawdma.c -------------------------------------------------------------------------------- /src/os/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sprintf.c -------------------------------------------------------------------------------- /src/os/spsetpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/spsetpc.c -------------------------------------------------------------------------------- /src/os/spsetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/spsetstat.c -------------------------------------------------------------------------------- /src/os/sptask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sptask.c -------------------------------------------------------------------------------- /src/os/sptaskyield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sptaskyield.c -------------------------------------------------------------------------------- /src/os/sptaskyielded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sptaskyielded.c -------------------------------------------------------------------------------- /src/os/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/sqrtf.c -------------------------------------------------------------------------------- /src/os/startthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/startthread.c -------------------------------------------------------------------------------- /src/os/stopthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/stopthread.c -------------------------------------------------------------------------------- /src/os/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/strcmp.c -------------------------------------------------------------------------------- /src/os/strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/strcpy.c -------------------------------------------------------------------------------- /src/os/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/string.c -------------------------------------------------------------------------------- /src/os/strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/strncmp.c -------------------------------------------------------------------------------- /src/os/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/thread.c -------------------------------------------------------------------------------- /src/os/timerintr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/timerintr.c -------------------------------------------------------------------------------- /src/os/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/vi.c -------------------------------------------------------------------------------- /src/os/viblack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/viblack.c -------------------------------------------------------------------------------- /src/os/vigetcurrcontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/vigetcurrcontext.c -------------------------------------------------------------------------------- /src/os/vigetmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/vigetmode.c -------------------------------------------------------------------------------- /src/os/vimgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/vimgr.c -------------------------------------------------------------------------------- /src/os/vimodempallan1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/vimodempallan1.c -------------------------------------------------------------------------------- /src/os/vimodentsclan1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/vimodentsclan1.c -------------------------------------------------------------------------------- /src/os/vimodepallan1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/vimodepallan1.c -------------------------------------------------------------------------------- /src/os/virepeatline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/virepeatline.c -------------------------------------------------------------------------------- /src/os/visetevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/visetevent.c -------------------------------------------------------------------------------- /src/os/visetmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/visetmode.c -------------------------------------------------------------------------------- /src/os/visetspecial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/visetspecial.c -------------------------------------------------------------------------------- /src/os/visetyscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/visetyscale.c -------------------------------------------------------------------------------- /src/os/viswapbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/viswapbuf.c -------------------------------------------------------------------------------- /src/os/viswapcontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/viswapcontext.c -------------------------------------------------------------------------------- /src/os/vitbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/vitbl.c -------------------------------------------------------------------------------- /src/os/xldtob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/xldtob.c -------------------------------------------------------------------------------- /src/os/xlitob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/xlitob.c -------------------------------------------------------------------------------- /src/os/xprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/xprintf.c -------------------------------------------------------------------------------- /src/os/yieldthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/os/yieldthread.c -------------------------------------------------------------------------------- /src/pause/pause_badges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/pause/pause_badges.c -------------------------------------------------------------------------------- /src/pause/pause_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/pause/pause_common.h -------------------------------------------------------------------------------- /src/pause/pause_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/pause/pause_gfx.c -------------------------------------------------------------------------------- /src/pause/pause_gfx_en.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/pause/pause_gfx_en.c -------------------------------------------------------------------------------- /src/pause/pause_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/pause/pause_items.c -------------------------------------------------------------------------------- /src/pause/pause_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/pause/pause_main.c -------------------------------------------------------------------------------- /src/pause/pause_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/pause/pause_map.c -------------------------------------------------------------------------------- /src/pause/pause_spirits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/pause/pause_spirits.c -------------------------------------------------------------------------------- /src/pause/pause_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/pause/pause_stats.c -------------------------------------------------------------------------------- /src/pause/pause_styles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/pause/pause_styles.c -------------------------------------------------------------------------------- /src/pause/pause_tabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/pause/pause_tabs.c -------------------------------------------------------------------------------- /src/pulse_stone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/pulse_stone.c -------------------------------------------------------------------------------- /src/recipes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/recipes.yaml -------------------------------------------------------------------------------- /src/recipes_jp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/recipes_jp.yaml -------------------------------------------------------------------------------- /src/rumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/rumble.c -------------------------------------------------------------------------------- /src/screen_overlays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/screen_overlays.c -------------------------------------------------------------------------------- /src/screen_render_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/screen_render_util.c -------------------------------------------------------------------------------- /src/speech_bubble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/speech_bubble.c -------------------------------------------------------------------------------- /src/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/sprite.c -------------------------------------------------------------------------------- /src/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/sprite.h -------------------------------------------------------------------------------- /src/sprite_shading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/sprite_shading.c -------------------------------------------------------------------------------- /src/starpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/starpoint.c -------------------------------------------------------------------------------- /src/state_battle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/state_battle.c -------------------------------------------------------------------------------- /src/state_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/state_demo.c -------------------------------------------------------------------------------- /src/state_file_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/state_file_select.c -------------------------------------------------------------------------------- /src/state_intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/state_intro.c -------------------------------------------------------------------------------- /src/state_logos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/state_logos.c -------------------------------------------------------------------------------- /src/state_pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/state_pause.c -------------------------------------------------------------------------------- /src/state_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/state_startup.c -------------------------------------------------------------------------------- /src/state_title_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/state_title_screen.c -------------------------------------------------------------------------------- /src/state_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/state_world.c -------------------------------------------------------------------------------- /src/status_icons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/status_icons.c -------------------------------------------------------------------------------- /src/status_star_shimmer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/status_star_shimmer.c -------------------------------------------------------------------------------- /src/texture_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/texture_memory.c -------------------------------------------------------------------------------- /src/trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/trigger.c -------------------------------------------------------------------------------- /src/vars_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/vars_access.c -------------------------------------------------------------------------------- /src/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/windows.c -------------------------------------------------------------------------------- /src/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/worker.c -------------------------------------------------------------------------------- /src/world/action/hammer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/action/hammer.c -------------------------------------------------------------------------------- /src/world/action/idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/action/idle.c -------------------------------------------------------------------------------- /src/world/action/jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/action/jump.c -------------------------------------------------------------------------------- /src/world/action/land.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/action/land.c -------------------------------------------------------------------------------- /src/world/action/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/action/misc.c -------------------------------------------------------------------------------- /src/world/action/slide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/action/slide.c -------------------------------------------------------------------------------- /src/world/action/spin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/action/spin.c -------------------------------------------------------------------------------- /src/world/action/walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/action/walk.c -------------------------------------------------------------------------------- /src/world/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/actions.c -------------------------------------------------------------------------------- /src/world/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/actions.h -------------------------------------------------------------------------------- /src/world/area_arn/arn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_arn/arn.h -------------------------------------------------------------------------------- /src/world/area_dgb/dgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_dgb/dgb.h -------------------------------------------------------------------------------- /src/world/area_dro/dro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_dro/dro.h -------------------------------------------------------------------------------- /src/world/area_end/end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_end/end.h -------------------------------------------------------------------------------- /src/world/area_flo/flo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_flo/flo.h -------------------------------------------------------------------------------- /src/world/area_gv/gv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_gv/gv.h -------------------------------------------------------------------------------- /src/world/area_hos/hos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_hos/hos.h -------------------------------------------------------------------------------- /src/world/area_isk/isk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_isk/isk.h -------------------------------------------------------------------------------- /src/world/area_iwa/iwa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_iwa/iwa.h -------------------------------------------------------------------------------- /src/world/area_jan/jan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_jan/jan.h -------------------------------------------------------------------------------- /src/world/area_kgr/kgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_kgr/kgr.h -------------------------------------------------------------------------------- /src/world/area_kkj/kkj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_kkj/kkj.h -------------------------------------------------------------------------------- /src/world/area_kmr/kmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_kmr/kmr.h -------------------------------------------------------------------------------- /src/world/area_kpa/kpa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_kpa/kpa.h -------------------------------------------------------------------------------- /src/world/area_kzn/kzn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_kzn/kzn.h -------------------------------------------------------------------------------- /src/world/area_mac/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_mac/mac.h -------------------------------------------------------------------------------- /src/world/area_mgm/mgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_mgm/mgm.h -------------------------------------------------------------------------------- /src/world/area_mim/mim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_mim/mim.h -------------------------------------------------------------------------------- /src/world/area_nok/nok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_nok/nok.h -------------------------------------------------------------------------------- /src/world/area_obk/obk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_obk/obk.h -------------------------------------------------------------------------------- /src/world/area_omo/omo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_omo/omo.h -------------------------------------------------------------------------------- /src/world/area_osr/osr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_osr/osr.h -------------------------------------------------------------------------------- /src/world/area_pra/pra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_pra/pra.h -------------------------------------------------------------------------------- /src/world/area_sam/sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_sam/sam.h -------------------------------------------------------------------------------- /src/world/area_sbk/sbk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_sbk/sbk.h -------------------------------------------------------------------------------- /src/world/area_tik/tik.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_tik/tik.h -------------------------------------------------------------------------------- /src/world/area_trd/trd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_trd/trd.h -------------------------------------------------------------------------------- /src/world/area_tst/tst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/area_tst/tst.h -------------------------------------------------------------------------------- /src/world/disguise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/disguise.h -------------------------------------------------------------------------------- /src/world/entrances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/entrances.h -------------------------------------------------------------------------------- /src/world/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/menus.c -------------------------------------------------------------------------------- /src/world/partner/bow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/partner/bow.c -------------------------------------------------------------------------------- /src/world/partner/bow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/partner/bow.h -------------------------------------------------------------------------------- /src/world/partner/twink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/partner/twink.c -------------------------------------------------------------------------------- /src/world/partner/twink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/partner/twink.h -------------------------------------------------------------------------------- /src/world/partner/watt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/partner/watt.c -------------------------------------------------------------------------------- /src/world/partner/watt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/partner/watt.h -------------------------------------------------------------------------------- /src/world/partners.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/partners.c -------------------------------------------------------------------------------- /src/world/partners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/partners.h -------------------------------------------------------------------------------- /src/world/surfaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/surfaces.c -------------------------------------------------------------------------------- /src/world/surfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/surfaces.h -------------------------------------------------------------------------------- /src/world/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/world.c -------------------------------------------------------------------------------- /src/world/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world/world.h -------------------------------------------------------------------------------- /src/world_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world_map.xml -------------------------------------------------------------------------------- /src/world_use_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/src/world_use_item.c -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/asm_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/asm_sizes.py -------------------------------------------------------------------------------- /tools/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/build/audio/sbn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/audio/sbn.py -------------------------------------------------------------------------------- /tools/build/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/common.py -------------------------------------------------------------------------------- /tools/build/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/configure.py -------------------------------------------------------------------------------- /tools/build/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/effects.py -------------------------------------------------------------------------------- /tools/build/genobjcopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/genobjcopy.py -------------------------------------------------------------------------------- /tools/build/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/icons.py -------------------------------------------------------------------------------- /tools/build/iconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/iconv.py -------------------------------------------------------------------------------- /tools/build/img/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/img/build.py -------------------------------------------------------------------------------- /tools/build/img/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/img/header.py -------------------------------------------------------------------------------- /tools/build/imgfx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/build/item_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/item_data.py -------------------------------------------------------------------------------- /tools/build/mapfs/tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/mapfs/tex.py -------------------------------------------------------------------------------- /tools/build/move_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/move_data.py -------------------------------------------------------------------------------- /tools/build/pm_charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/pm_charset.py -------------------------------------------------------------------------------- /tools/build/recipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/recipes.py -------------------------------------------------------------------------------- /tools/build/rom/.gitignore: -------------------------------------------------------------------------------- 1 | n64crc 2 | -------------------------------------------------------------------------------- /tools/build/rom/n64crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/rom/n64crc.c -------------------------------------------------------------------------------- /tools/build/sprite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/build/world_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/build/world_map.py -------------------------------------------------------------------------------- /tools/compare_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/compare_shapes.py -------------------------------------------------------------------------------- /tools/crunch64.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/crunch64.nix -------------------------------------------------------------------------------- /tools/disasm_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/disasm_animation.py -------------------------------------------------------------------------------- /tools/disasm_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/disasm_script.py -------------------------------------------------------------------------------- /tools/find_duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/find_duplicates.py -------------------------------------------------------------------------------- /tools/fix_sprite_xmls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/fix_sprite_xmls.py -------------------------------------------------------------------------------- /tools/get_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/get_variable.py -------------------------------------------------------------------------------- /tools/ignored_funcs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/ignored_funcs.txt -------------------------------------------------------------------------------- /tools/mv_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/mv_segment.py -------------------------------------------------------------------------------- /tools/old/asset_rework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/old/asset_rework.py -------------------------------------------------------------------------------- /tools/old/codescan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/old/codescan.py -------------------------------------------------------------------------------- /tools/old/gfxdis_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/old/gfxdis_loop.py -------------------------------------------------------------------------------- /tools/old/m_map_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/old/m_map_funcs.py -------------------------------------------------------------------------------- /tools/old/new_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/old/new_lines.py -------------------------------------------------------------------------------- /tools/old/sortsymz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/old/sortsymz.py -------------------------------------------------------------------------------- /tools/old/substitute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/old/substitute.py -------------------------------------------------------------------------------- /tools/old/update_evts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/old/update_evts.py -------------------------------------------------------------------------------- /tools/pigment64.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/pigment64.nix -------------------------------------------------------------------------------- /tools/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/rename.py -------------------------------------------------------------------------------- /tools/sjis-escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/sjis-escape.py -------------------------------------------------------------------------------- /tools/sjis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/sjis.py -------------------------------------------------------------------------------- /tools/splat_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/splat_ext/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/splat_ext/a.py -------------------------------------------------------------------------------- /tools/splat_ext/icon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/splat_ext/icon.yaml -------------------------------------------------------------------------------- /tools/splat_ext/msg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/splat_ext/msg.yaml -------------------------------------------------------------------------------- /tools/splat_ext/pm_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/splat_ext/pm_msg.py -------------------------------------------------------------------------------- /tools/splat_ext/pm_sbn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/splat_ext/pm_sbn.py -------------------------------------------------------------------------------- /tools/sym_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/tools/sym_info.py -------------------------------------------------------------------------------- /tools/warnings_count/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /ver/ique/asm/header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/ique/asm/header.s -------------------------------------------------------------------------------- /ver/ique/checksum.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/ique/checksum.sha1 -------------------------------------------------------------------------------- /ver/ique/splat-shift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/ique/splat-shift.yaml -------------------------------------------------------------------------------- /ver/ique/splat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/ique/splat.yaml -------------------------------------------------------------------------------- /ver/ique/symbol_addrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/ique/symbol_addrs.txt -------------------------------------------------------------------------------- /ver/ique/undefined_funcs_auto.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ver/ique/undefined_syms_auto.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ver/jp/asm/header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/jp/asm/header.s -------------------------------------------------------------------------------- /ver/jp/build.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/jp/build.cfg -------------------------------------------------------------------------------- /ver/jp/checksum.sha1: -------------------------------------------------------------------------------- 1 | b9cca3ff260b9ff427d981626b82f96de73586d3 ver/jp/build/papermario.z64 2 | -------------------------------------------------------------------------------- /ver/jp/splat-debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/jp/splat-debug.yaml -------------------------------------------------------------------------------- /ver/jp/splat-shift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/jp/splat-shift.yaml -------------------------------------------------------------------------------- /ver/jp/splat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/jp/splat.yaml -------------------------------------------------------------------------------- /ver/jp/symbol_addrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/jp/symbol_addrs.txt -------------------------------------------------------------------------------- /ver/jp/undefined_funcs_auto.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ver/jp/undefined_syms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/jp/undefined_syms.txt -------------------------------------------------------------------------------- /ver/jp/undefined_syms_auto.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ver/pal/asm/bss3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/pal/asm/bss3.s -------------------------------------------------------------------------------- /ver/pal/asm/header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/pal/asm/header.s -------------------------------------------------------------------------------- /ver/pal/checksum.sha1: -------------------------------------------------------------------------------- 1 | 2111d39265a317414d359e35a7d971c4dfa5f9e1 ver/pal/build/papermario.z64 2 | -------------------------------------------------------------------------------- /ver/pal/effects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/pal/effects.yaml -------------------------------------------------------------------------------- /ver/pal/splat-shift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/pal/splat-shift.yaml -------------------------------------------------------------------------------- /ver/pal/splat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/pal/splat.yaml -------------------------------------------------------------------------------- /ver/pal/symbol_addrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/pal/symbol_addrs.txt -------------------------------------------------------------------------------- /ver/pal/undefined_funcs_auto.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ver/us/asm/header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/us/asm/header.s -------------------------------------------------------------------------------- /ver/us/checksum.sha1: -------------------------------------------------------------------------------- 1 | 3837f44cda784b466c9a2d99df70d77c322b97a0 ver/us/build/papermario.z64 2 | -------------------------------------------------------------------------------- /ver/us/splat-debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/us/splat-debug.yaml -------------------------------------------------------------------------------- /ver/us/splat-shift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/us/splat-shift.yaml -------------------------------------------------------------------------------- /ver/us/splat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/us/splat.yaml -------------------------------------------------------------------------------- /ver/us/symbol_addrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/us/symbol_addrs.txt -------------------------------------------------------------------------------- /ver/us/undefined_funcs_auto.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ver/us/undefined_syms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bates64/papermario-dx/HEAD/ver/us/undefined_syms.txt -------------------------------------------------------------------------------- /ver/us/undefined_syms_auto.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------