├── .gitignore ├── .gitmodules ├── ARMCC.cmake ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── data ├── checksum.md5 ├── keep_symbols.txt └── oot3d.ld ├── diff_settings.py ├── disassembly ├── CMakeLists.txt ├── SHT__INIT_ARRAY.txt ├── data_chunks.txt ├── oot3d.cfg ├── rodata_chunks.txt └── tools │ ├── baserom_fixes.py │ ├── ctrtool │ ├── ctrtool.exe │ ├── e2elf.ld │ ├── exefs2elf.py │ ├── gcc_to_arm_asm.py │ ├── n3dsdisasm │ ├── n3dsdisasm.exe │ └── split_arm_data_chunks.py ├── include ├── color.hpp ├── functions.hpp ├── global.hpp ├── graphics.hpp ├── graphics │ └── skeleton_animation_model.hpp ├── ichain.hpp ├── libcpp.hpp ├── libcpp │ └── lib_functions.hpp ├── macros.hpp ├── math.hpp ├── non_matchings.hpp ├── regs.hpp ├── stddef.hpp ├── sys_math3d.hpp ├── tables │ └── actor_table.hpp ├── types.h ├── variables.hpp ├── z3D.hpp ├── z3Dactor.hpp ├── z3Danimation.hpp ├── z3Dbgcheck.hpp ├── z3Dcamera.hpp ├── z3Dcollision_check.hpp ├── z3Dcutscene.hpp ├── z3Ditem.hpp ├── z3Dmath.hpp ├── z3Dobject.hpp ├── z3Dsave.hpp ├── z3Dscene.hpp └── z3Dvec.hpp ├── library └── CMakeLists.txt ├── src ├── SHT__INIT_ARRAY.cpp ├── crt0.cpp ├── cstring.cpp ├── data │ ├── conststring.cpp │ ├── data.cpp │ └── rodata.cpp ├── functions │ ├── functions_100000s.cpp │ ├── functions_120000s.cpp │ ├── functions_140000s.cpp │ ├── functions_180000s.cpp │ ├── functions_1C0000s.cpp │ ├── functions_200000s.cpp │ ├── functions_240000s.cpp │ ├── functions_280000s.cpp │ ├── functions_2A0000s.cpp │ ├── functions_2C0000s.cpp │ ├── functions_2E0000s.cpp │ ├── functions_300000s.cpp │ ├── functions_310000s.cpp │ ├── functions_320000s.cpp │ ├── functions_340000s.cpp │ ├── functions_350000s.cpp │ ├── functions_360000s.cpp │ ├── functions_370000s.cpp │ ├── functions_380000s.cpp │ ├── functions_3A0000s.cpp │ ├── functions_3C0000s.cpp │ ├── functions_3E0000s.cpp │ ├── functions_400000s.cpp │ ├── functions_408000s.cpp │ ├── functions_410000s.cpp │ ├── functions_420000s.cpp │ ├── functions_440000s.cpp │ ├── functions_460000s.cpp │ ├── functions_480000s.cpp │ ├── functions_4A0000s.cpp │ └── functions_4C0000s.cpp ├── game │ ├── actors │ │ ├── Actor_1D7 │ │ │ ├── z_actor_1d7.cpp │ │ │ └── z_actor_1d7.hpp │ │ ├── Actor_1D8 │ │ │ ├── z_actor_1d8.cpp │ │ │ └── z_actor_1d8.hpp │ │ ├── Actor_1D9 │ │ │ ├── z_actor_1d9.cpp │ │ │ └── z_actor_1d9.hpp │ │ ├── Actor_1DA │ │ │ ├── z_actor_1da.cpp │ │ │ └── z_actor_1da.hpp │ │ ├── Arms_Hook │ │ │ ├── z_arms_hook.cpp │ │ │ └── z_arms_hook.hpp │ │ ├── Arrow_Fire │ │ │ ├── z_arrow_fire.cpp │ │ │ └── z_arrow_fire.hpp │ │ ├── Arrow_Ice │ │ │ ├── z_arrow_ice.cpp │ │ │ └── z_arrow_ice.hpp │ │ ├── Arrow_Light │ │ │ ├── z_arrow_light.cpp │ │ │ └── z_arrow_light.hpp │ │ ├── Bg_Bdan_Objects │ │ │ ├── z_bg_bdan_objects.cpp │ │ │ └── z_bg_bdan_objects.hpp │ │ ├── Bg_Bdan_Switch │ │ │ ├── z_bg_bdan_switch.cpp │ │ │ └── z_bg_bdan_switch.hpp │ │ ├── Bg_Bom_Guard │ │ │ ├── z_bg_bom_guard.cpp │ │ │ └── z_bg_bom_guard.hpp │ │ ├── Bg_Bombwall │ │ │ ├── z_bg_bombwall.cpp │ │ │ └── z_bg_bombwall.hpp │ │ ├── Bg_Bowl_Wall │ │ │ ├── z_bg_bowl_wall.cpp │ │ │ └── z_bg_bowl_wall.hpp │ │ ├── Bg_Breakwall │ │ │ ├── z_bg_breakwall.cpp │ │ │ └── z_bg_breakwall.hpp │ │ ├── Bg_Ddan_Jd │ │ │ ├── z_bg_ddan_jd.cpp │ │ │ └── z_bg_ddan_jd.hpp │ │ ├── Bg_Ddan_Kd │ │ │ ├── z_bg_ddan_kd.cpp │ │ │ └── z_bg_ddan_kd.hpp │ │ ├── Bg_Dodoago │ │ │ ├── z_bg_dodoago.cpp │ │ │ └── z_bg_dodoago.hpp │ │ ├── Bg_Dy_Yoseizo │ │ │ ├── z_bg_dy_yoseizo.cpp │ │ │ └── z_bg_dy_yoseizo.hpp │ │ ├── Bg_Ganon_Otyuka │ │ │ ├── z_bg_ganon_otyuka.cpp │ │ │ └── z_bg_ganon_otyuka.hpp │ │ ├── Bg_Gate_Shutter │ │ │ ├── z_bg_gate_shutter.cpp │ │ │ └── z_bg_gate_shutter.hpp │ │ ├── Bg_Gjyo_Bridge │ │ │ ├── z_bg_gjyo_bridge.cpp │ │ │ └── z_bg_gjyo_bridge.hpp │ │ ├── Bg_Gnd_Darkmeiro │ │ │ ├── z_bg_gnd_darkmeiro.cpp │ │ │ └── z_bg_gnd_darkmeiro.hpp │ │ ├── Bg_Gnd_Firemeiro │ │ │ ├── z_bg_gnd_firemeiro.cpp │ │ │ └── z_bg_gnd_firemeiro.hpp │ │ ├── Bg_Gnd_Iceblock │ │ │ ├── z_bg_gnd_iceblock.cpp │ │ │ └── z_bg_gnd_iceblock.hpp │ │ ├── Bg_Gnd_Nisekabe │ │ │ ├── z_bg_gnd_nisekabe.cpp │ │ │ └── z_bg_gnd_nisekabe.hpp │ │ ├── Bg_Gnd_Soulmeiro │ │ │ ├── z_bg_gnd_soulmeiro.cpp │ │ │ └── z_bg_gnd_soulmeiro.hpp │ │ ├── Bg_Haka │ │ │ ├── z_bg_haka.cpp │ │ │ └── z_bg_haka.hpp │ │ ├── Bg_Haka_Gate │ │ │ ├── z_bg_haka_gate.cpp │ │ │ └── z_bg_haka_gate.hpp │ │ ├── Bg_Haka_Huta │ │ │ ├── z_bg_haka_huta.cpp │ │ │ └── z_bg_haka_huta.hpp │ │ ├── Bg_Haka_Megane │ │ │ ├── z_bg_haka_megane.cpp │ │ │ └── z_bg_haka_megane.hpp │ │ ├── Bg_Haka_MeganeBG │ │ │ ├── z_bg_haka_meganebg.cpp │ │ │ └── z_bg_haka_meganebg.hpp │ │ ├── Bg_Haka_Sgami │ │ │ ├── z_bg_haka_sgami.cpp │ │ │ └── z_bg_haka_sgami.hpp │ │ ├── Bg_Haka_Ship │ │ │ ├── z_bg_haka_ship.cpp │ │ │ └── z_bg_haka_ship.hpp │ │ ├── Bg_Haka_Trap │ │ │ ├── z_bg_haka_trap.cpp │ │ │ └── z_bg_haka_trap.hpp │ │ ├── Bg_Haka_Tubo │ │ │ ├── z_bg_haka_tubo.cpp │ │ │ └── z_bg_haka_tubo.hpp │ │ ├── Bg_Haka_Water │ │ │ ├── z_bg_haka_water.cpp │ │ │ └── z_bg_haka_water.hpp │ │ ├── Bg_Haka_Zou │ │ │ ├── z_bg_haka_zou.cpp │ │ │ └── z_bg_haka_zou.hpp │ │ ├── Bg_Heavy_Block │ │ │ ├── z_bg_heavy_block.cpp │ │ │ └── z_bg_heavy_block.hpp │ │ ├── Bg_Hidan_Curtain │ │ │ ├── z_bg_hidan_curtain.cpp │ │ │ └── z_bg_hidan_curtain.hpp │ │ ├── Bg_Hidan_Dalm │ │ │ ├── z_bg_hidan_dalm.cpp │ │ │ └── z_bg_hidan_dalm.hpp │ │ ├── Bg_Hidan_Firewall │ │ │ ├── z_bg_hidan_firewall.cpp │ │ │ └── z_bg_hidan_firewall.hpp │ │ ├── Bg_Hidan_Fslift │ │ │ ├── z_bg_hidan_fslift.cpp │ │ │ └── z_bg_hidan_fslift.hpp │ │ ├── Bg_Hidan_Fwbig │ │ │ ├── z_bg_hidan_fwbig.cpp │ │ │ └── z_bg_hidan_fwbig.hpp │ │ ├── Bg_Hidan_Hamstep │ │ │ ├── z_bg_hidan_hamstep.cpp │ │ │ └── z_bg_hidan_hamstep.hpp │ │ ├── Bg_Hidan_Hrock │ │ │ ├── z_bg_hidan_hrock.cpp │ │ │ └── z_bg_hidan_hrock.hpp │ │ ├── Bg_Hidan_Kousi │ │ │ ├── z_bg_hidan_kousi.cpp │ │ │ └── z_bg_hidan_kousi.hpp │ │ ├── Bg_Hidan_Kowarerukabe │ │ │ ├── z_bg_hidan_kowarerukabe.cpp │ │ │ └── z_bg_hidan_kowarerukabe.hpp │ │ ├── Bg_Hidan_Rock │ │ │ ├── z_bg_hidan_rock.cpp │ │ │ └── z_bg_hidan_rock.hpp │ │ ├── Bg_Hidan_Rsekizou │ │ │ ├── z_bg_hidan_rsekizou.cpp │ │ │ └── z_bg_hidan_rsekizou.hpp │ │ ├── Bg_Hidan_Sekizou │ │ │ ├── z_bg_hidan_sekizou.cpp │ │ │ └── z_bg_hidan_sekizou.hpp │ │ ├── Bg_Hidan_Sima │ │ │ ├── z_bg_hidan_sima.cpp │ │ │ └── z_bg_hidan_sima.hpp │ │ ├── Bg_Hidan_Syoku │ │ │ ├── z_bg_hidan_syoku.cpp │ │ │ └── z_bg_hidan_syoku.hpp │ │ ├── Bg_Ice_Objects │ │ │ ├── z_bg_ice_objects.cpp │ │ │ └── z_bg_ice_objects.hpp │ │ ├── Bg_Ice_Shelter │ │ │ ├── z_bg_ice_shelter.cpp │ │ │ └── z_bg_ice_shelter.hpp │ │ ├── Bg_Ice_Shutter │ │ │ ├── z_bg_ice_shutter.cpp │ │ │ └── z_bg_ice_shutter.hpp │ │ ├── Bg_Ice_Turara │ │ │ ├── z_bg_ice_turara.cpp │ │ │ └── z_bg_ice_turara.hpp │ │ ├── Bg_Ingate │ │ │ ├── z_bg_ingate.cpp │ │ │ └── z_bg_ingate.hpp │ │ ├── Bg_Jya_1flift │ │ │ ├── z_bg_jya_1flift.cpp │ │ │ └── z_bg_jya_1flift.hpp │ │ ├── Bg_Jya_Amishutter │ │ │ ├── z_bg_jya_amishutter.cpp │ │ │ └── z_bg_jya_amishutter.hpp │ │ ├── Bg_Jya_Bigmirror │ │ │ ├── z_bg_jya_bigmirror.cpp │ │ │ └── z_bg_jya_bigmirror.hpp │ │ ├── Bg_Jya_Block │ │ │ ├── z_bg_jya_block.cpp │ │ │ └── z_bg_jya_block.hpp │ │ ├── Bg_Jya_Bombchuiwa │ │ │ ├── z_bg_jya_bombchuiwa.cpp │ │ │ └── z_bg_jya_bombchuiwa.hpp │ │ ├── Bg_Jya_Bombiwa │ │ │ ├── z_bg_jya_bombiwa.cpp │ │ │ └── z_bg_jya_bombiwa.hpp │ │ ├── Bg_Jya_Cobra │ │ │ ├── z_bg_jya_cobra.cpp │ │ │ └── z_bg_jya_cobra.hpp │ │ ├── Bg_Jya_Goroiwa │ │ │ ├── z_bg_jya_goroiwa.cpp │ │ │ └── z_bg_jya_goroiwa.hpp │ │ ├── Bg_Jya_Haheniron │ │ │ ├── z_bg_jya_haheniron.cpp │ │ │ └── z_bg_jya_haheniron.hpp │ │ ├── Bg_Jya_Ironobj │ │ │ ├── z_bg_jya_ironobj.cpp │ │ │ └── z_bg_jya_ironobj.hpp │ │ ├── Bg_Jya_Kanaami │ │ │ ├── z_bg_jya_kanaami.cpp │ │ │ └── z_bg_jya_kanaami.hpp │ │ ├── Bg_Jya_Lift │ │ │ ├── z_bg_jya_lift.cpp │ │ │ └── z_bg_jya_lift.hpp │ │ ├── Bg_Jya_Megami │ │ │ ├── z_bg_jya_megami.cpp │ │ │ └── z_bg_jya_megami.hpp │ │ ├── Bg_Jya_Zurerukabe │ │ │ ├── z_bg_jya_zurerukabe.cpp │ │ │ └── z_bg_jya_zurerukabe.hpp │ │ ├── Bg_Menkuri_Eye │ │ │ ├── z_bg_menkuri_eye.cpp │ │ │ └── z_bg_menkuri_eye.hpp │ │ ├── Bg_Menkuri_Kaiten │ │ │ ├── z_bg_menkuri_kaiten.cpp │ │ │ └── z_bg_menkuri_kaiten.hpp │ │ ├── Bg_Menkuri_Nisekabe │ │ │ ├── z_bg_menkuri_nisekabe.cpp │ │ │ └── z_bg_menkuri_nisekabe.hpp │ │ ├── Bg_Mizu_Bwall │ │ │ ├── z_bg_mizu_bwall.cpp │ │ │ └── z_bg_mizu_bwall.hpp │ │ ├── Bg_Mizu_Movebg │ │ │ ├── z_bg_mizu_movebg.cpp │ │ │ └── z_bg_mizu_movebg.hpp │ │ ├── Bg_Mizu_Shutter │ │ │ ├── z_bg_mizu_shutter.cpp │ │ │ └── z_bg_mizu_shutter.hpp │ │ ├── Bg_Mizu_Uzu │ │ │ ├── z_bg_mizu_uzu.cpp │ │ │ └── z_bg_mizu_uzu.hpp │ │ ├── Bg_Mizu_Water │ │ │ ├── z_bg_mizu_water.cpp │ │ │ └── z_bg_mizu_water.hpp │ │ ├── Bg_Mjin │ │ │ ├── z_bg_mjin.cpp │ │ │ └── z_bg_mjin.hpp │ │ ├── Bg_Mori_Bigst │ │ │ ├── z_bg_mori_bigst.cpp │ │ │ └── z_bg_mori_bigst.hpp │ │ ├── Bg_Mori_Elevator │ │ │ ├── z_bg_mori_elevator.cpp │ │ │ └── z_bg_mori_elevator.hpp │ │ ├── Bg_Mori_Hashigo │ │ │ ├── z_bg_mori_hashigo.cpp │ │ │ └── z_bg_mori_hashigo.hpp │ │ ├── Bg_Mori_Hashira4 │ │ │ ├── z_bg_mori_hashira4.cpp │ │ │ └── z_bg_mori_hashira4.hpp │ │ ├── Bg_Mori_Hineri │ │ │ ├── z_bg_mori_hineri.cpp │ │ │ └── z_bg_mori_hineri.hpp │ │ ├── Bg_Mori_Idomizu │ │ │ ├── z_bg_mori_idomizu.cpp │ │ │ └── z_bg_mori_idomizu.hpp │ │ ├── Bg_Mori_Kaitenkabe │ │ │ ├── z_bg_mori_kaitenkabe.cpp │ │ │ └── z_bg_mori_kaitenkabe.hpp │ │ ├── Bg_Mori_Rakkatenjo │ │ │ ├── z_bg_mori_rakkatenjo.cpp │ │ │ └── z_bg_mori_rakkatenjo.hpp │ │ ├── Bg_Po_Event │ │ │ ├── z_bg_po_event.cpp │ │ │ └── z_bg_po_event.hpp │ │ ├── Bg_Po_Syokudai │ │ │ ├── z_bg_po_syokudai.cpp │ │ │ └── z_bg_po_syokudai.hpp │ │ ├── Bg_Relay_Objects │ │ │ ├── z_bg_relay_objects.cpp │ │ │ └── z_bg_relay_objects.hpp │ │ ├── Bg_Spot00_Break │ │ │ ├── z_bg_spot00_break.cpp │ │ │ └── z_bg_spot00_break.hpp │ │ ├── Bg_Spot00_Hanebasi │ │ │ ├── z_bg_spot00_hanebasi.cpp │ │ │ └── z_bg_spot00_hanebasi.hpp │ │ ├── Bg_Spot01_Fusya │ │ │ ├── z_bg_spot01_fusya.cpp │ │ │ └── z_bg_spot01_fusya.hpp │ │ ├── Bg_Spot01_Idohashira │ │ │ ├── z_bg_spot01_idohashira.cpp │ │ │ └── z_bg_spot01_idohashira.hpp │ │ ├── Bg_Spot01_Idomizu │ │ │ ├── z_bg_spot01_idomizu.cpp │ │ │ └── z_bg_spot01_idomizu.hpp │ │ ├── Bg_Spot01_Idosoko │ │ │ ├── z_bg_spot01_idosoko.cpp │ │ │ └── z_bg_spot01_idosoko.hpp │ │ ├── Bg_Spot01_Objects2 │ │ │ ├── z_bg_spot01_objects2.cpp │ │ │ └── z_bg_spot01_objects2.hpp │ │ ├── Bg_Spot02_Objects │ │ │ ├── z_bg_spot02_objects.cpp │ │ │ └── z_bg_spot02_objects.hpp │ │ ├── Bg_Spot03_Taki │ │ │ ├── z_bg_spot03_taki.cpp │ │ │ └── z_bg_spot03_taki.hpp │ │ ├── Bg_Spot05_Soko │ │ │ ├── z_bg_spot05_soko.cpp │ │ │ └── z_bg_spot05_soko.hpp │ │ ├── Bg_Spot06_Objects │ │ │ ├── z_bg_spot06_objects.cpp │ │ │ └── z_bg_spot06_objects.hpp │ │ ├── Bg_Spot07_Taki │ │ │ ├── z_bg_spot07_taki.cpp │ │ │ └── z_bg_spot07_taki.hpp │ │ ├── Bg_Spot08_Bakudankabe │ │ │ ├── z_bg_spot08_bakudankabe.cpp │ │ │ └── z_bg_spot08_bakudankabe.hpp │ │ ├── Bg_Spot08_Iceblock │ │ │ ├── z_bg_spot08_iceblock.cpp │ │ │ └── z_bg_spot08_iceblock.hpp │ │ ├── Bg_Spot09_Obj │ │ │ ├── z_bg_spot09_obj.cpp │ │ │ └── z_bg_spot09_obj.hpp │ │ ├── Bg_Spot11_Bakudankabe │ │ │ ├── z_bg_spot11_bakudankabe.cpp │ │ │ └── z_bg_spot11_bakudankabe.hpp │ │ ├── Bg_Spot11_Oasis │ │ │ ├── z_bg_spot11_oasis.cpp │ │ │ └── z_bg_spot11_oasis.hpp │ │ ├── Bg_Spot12_Gate │ │ │ ├── z_bg_spot12_gate.cpp │ │ │ └── z_bg_spot12_gate.hpp │ │ ├── Bg_Spot12_Saku │ │ │ ├── z_bg_spot12_saku.cpp │ │ │ └── z_bg_spot12_saku.hpp │ │ ├── Bg_Spot15_Rrbox │ │ │ ├── z_bg_spot15_rrbox.cpp │ │ │ └── z_bg_spot15_rrbox.hpp │ │ ├── Bg_Spot15_Saku │ │ │ ├── z_bg_spot15_saku.cpp │ │ │ └── z_bg_spot15_saku.hpp │ │ ├── Bg_Spot16_Bombstone │ │ │ ├── z_bg_spot16_bombstone.cpp │ │ │ └── z_bg_spot16_bombstone.hpp │ │ ├── Bg_Spot16_Doughnut │ │ │ ├── z_bg_spot16_doughnut.cpp │ │ │ └── z_bg_spot16_doughnut.hpp │ │ ├── Bg_Spot17_Bakudankabe │ │ │ ├── z_bg_spot17_bakudankabe.cpp │ │ │ └── z_bg_spot17_bakudankabe.hpp │ │ ├── Bg_Spot17_Funen │ │ │ ├── z_bg_spot17_funen.cpp │ │ │ └── z_bg_spot17_funen.hpp │ │ ├── Bg_Spot18_Basket │ │ │ ├── z_bg_spot18_basket.cpp │ │ │ └── z_bg_spot18_basket.hpp │ │ ├── Bg_Spot18_Futa │ │ │ ├── z_bg_spot18_futa.cpp │ │ │ └── z_bg_spot18_futa.hpp │ │ ├── Bg_Spot18_Obj │ │ │ ├── z_bg_spot18_obj.cpp │ │ │ └── z_bg_spot18_obj.hpp │ │ ├── Bg_Spot18_Shutter │ │ │ ├── z_bg_spot18_shutter.cpp │ │ │ └── z_bg_spot18_shutter.hpp │ │ ├── Bg_Sst_Floor │ │ │ ├── z_bg_sst_floor.cpp │ │ │ └── z_bg_sst_floor.hpp │ │ ├── Bg_Toki_Hikari │ │ │ ├── z_bg_toki_hikari.cpp │ │ │ └── z_bg_toki_hikari.hpp │ │ ├── Bg_Toki_Swd │ │ │ ├── z_bg_toki_swd.cpp │ │ │ └── z_bg_toki_swd.hpp │ │ ├── Bg_Treemouth │ │ │ ├── z_bg_treemouth.cpp │ │ │ └── z_bg_treemouth.hpp │ │ ├── Bg_Umajump │ │ │ ├── z_bg_umajump.cpp │ │ │ └── z_bg_umajump.hpp │ │ ├── Bg_Vb_Sima │ │ │ ├── z_bg_vb_sima.cpp │ │ │ └── z_bg_vb_sima.hpp │ │ ├── Bg_Ydan_Hasi │ │ │ ├── z_bg_ydan_hasi.cpp │ │ │ └── z_bg_ydan_hasi.hpp │ │ ├── Bg_Ydan_Maruta │ │ │ ├── z_bg_ydan_maruta.cpp │ │ │ └── z_bg_ydan_maruta.hpp │ │ ├── Bg_Ydan_Sp │ │ │ ├── z_bg_ydan_sp.cpp │ │ │ └── z_bg_ydan_sp.hpp │ │ ├── Bg_Zg │ │ │ ├── z_bg_zg.cpp │ │ │ └── z_bg_zg.hpp │ │ ├── Boss_Dodongo │ │ │ ├── z_boss_dodongo.cpp │ │ │ └── z_boss_dodongo.hpp │ │ ├── Boss_Fd │ │ │ ├── z_boss_fd.cpp │ │ │ └── z_boss_fd.hpp │ │ ├── Boss_Fd2 │ │ │ ├── z_boss_fd2.cpp │ │ │ └── z_boss_fd2.hpp │ │ ├── Boss_Ganon │ │ │ ├── z_boss_ganon.cpp │ │ │ └── z_boss_ganon.hpp │ │ ├── Boss_Ganon2 │ │ │ ├── z_boss_ganon2.cpp │ │ │ └── z_boss_ganon2.hpp │ │ ├── Boss_Ganondrof │ │ │ ├── z_boss_ganondrof.cpp │ │ │ └── z_boss_ganondrof.hpp │ │ ├── Boss_Goma │ │ │ ├── z_boss_goma.cpp │ │ │ └── z_boss_goma.hpp │ │ ├── Boss_Mo │ │ │ ├── z_boss_mo.cpp │ │ │ └── z_boss_mo.hpp │ │ ├── Boss_Sst │ │ │ ├── z_boss_sst.cpp │ │ │ └── z_boss_sst.hpp │ │ ├── Boss_Tw │ │ │ ├── z_boss_tw.cpp │ │ │ └── z_boss_tw.hpp │ │ ├── Boss_Va │ │ │ ├── z_boss_va.cpp │ │ │ └── z_boss_va.hpp │ │ ├── Demo_6K │ │ │ ├── z_demo_6k.cpp │ │ │ └── z_demo_6k.hpp │ │ ├── Demo_Du │ │ │ ├── z_demo_du.cpp │ │ │ └── z_demo_du.hpp │ │ ├── Demo_Ec │ │ │ ├── z_demo_ec.cpp │ │ │ └── z_demo_ec.hpp │ │ ├── Demo_Effect │ │ │ ├── z_demo_effect.cpp │ │ │ └── z_demo_effect.hpp │ │ ├── Demo_Ext │ │ │ ├── z_demo_ext.cpp │ │ │ └── z_demo_ext.hpp │ │ ├── Demo_Geff │ │ │ ├── z_demo_geff.cpp │ │ │ └── z_demo_geff.hpp │ │ ├── Demo_Gj │ │ │ ├── z_demo_gj.cpp │ │ │ └── z_demo_gj.hpp │ │ ├── Demo_Go │ │ │ ├── z_demo_go.cpp │ │ │ └── z_demo_go.hpp │ │ ├── Demo_Gt │ │ │ ├── z_demo_gt.cpp │ │ │ └── z_demo_gt.hpp │ │ ├── Demo_Ik │ │ │ ├── z_demo_ik.cpp │ │ │ └── z_demo_ik.hpp │ │ ├── Demo_Im │ │ │ ├── z_demo_im.cpp │ │ │ └── z_demo_im.hpp │ │ ├── Demo_Kankyo │ │ │ ├── z_demo_kankyo.cpp │ │ │ └── z_demo_kankyo.hpp │ │ ├── Demo_Kekkai │ │ │ ├── z_demo_kekkai.cpp │ │ │ └── z_demo_kekkai.hpp │ │ ├── Demo_Sa │ │ │ ├── z_demo_sa.cpp │ │ │ └── z_demo_sa.hpp │ │ ├── Demo_Shd │ │ │ ├── z_demo_shd.cpp │ │ │ └── z_demo_shd.hpp │ │ ├── Demo_Tre_Lgt │ │ │ ├── z_demo_tre_lgt.cpp │ │ │ └── z_demo_tre_lgt.hpp │ │ ├── Door_Ana │ │ │ ├── z_door_ana.cpp │ │ │ └── z_door_ana.hpp │ │ ├── Door_Gerudo │ │ │ ├── z_door_gerudo.cpp │ │ │ └── z_door_gerudo.hpp │ │ ├── Door_Killer │ │ │ ├── z_door_killer.cpp │ │ │ └── z_door_killer.hpp │ │ ├── Door_Shutter │ │ │ ├── z_door_shutter.cpp │ │ │ └── z_door_shutter.hpp │ │ ├── Door_Toki │ │ │ ├── z_door_toki.cpp │ │ │ └── z_door_toki.hpp │ │ ├── Door_Warp1 │ │ │ ├── z_door_warp1.cpp │ │ │ └── z_door_warp1.hpp │ │ ├── Efc_Erupc │ │ │ ├── z_efc_erupc.cpp │ │ │ └── z_efc_erupc.hpp │ │ ├── Eff_Dust │ │ │ ├── z_eff_dust.cpp │ │ │ └── z_eff_dust.hpp │ │ ├── Elf_Msg │ │ │ ├── z_elf_msg.cpp │ │ │ └── z_elf_msg.hpp │ │ ├── Elf_Msg2 │ │ │ ├── z_elf_msg2.cpp │ │ │ └── z_elf_msg2.hpp │ │ ├── En_A_Obj │ │ │ ├── z_en_a_obj.cpp │ │ │ └── z_en_a_obj.hpp │ │ ├── En_Am │ │ │ ├── z_en_am.cpp │ │ │ └── z_en_am.hpp │ │ ├── En_Ani │ │ │ ├── z_en_ani.cpp │ │ │ └── z_en_ani.hpp │ │ ├── En_Anubice │ │ │ ├── z_en_anubice.cpp │ │ │ └── z_en_anubice.hpp │ │ ├── En_Anubice_Fire │ │ │ ├── z_en_anubice_fire.cpp │ │ │ └── z_en_anubice_fire.hpp │ │ ├── En_Anubice_Tag │ │ │ ├── z_en_anubice_tag.cpp │ │ │ └── z_en_anubice_tag.hpp │ │ ├── En_Arow_Trap │ │ │ ├── z_en_arow_trap.cpp │ │ │ └── z_en_arow_trap.hpp │ │ ├── En_Arrow │ │ │ ├── z_en_arrow.cpp │ │ │ └── z_en_arrow.hpp │ │ ├── En_Attack_Niw │ │ │ ├── z_en_attack_niw.cpp │ │ │ └── z_en_attack_niw.hpp │ │ ├── En_Ba │ │ │ ├── z_en_ba.cpp │ │ │ └── z_en_ba.hpp │ │ ├── En_Bb │ │ │ ├── z_en_bb.cpp │ │ │ └── z_en_bb.hpp │ │ ├── En_Bdfire │ │ │ ├── z_en_bdfire.cpp │ │ │ └── z_en_bdfire.hpp │ │ ├── En_Bigokuta │ │ │ ├── z_en_bigokuta.cpp │ │ │ └── z_en_bigokuta.hpp │ │ ├── En_Bili │ │ │ ├── z_en_bili.cpp │ │ │ └── z_en_bili.hpp │ │ ├── En_Bird │ │ │ ├── z_en_bird.cpp │ │ │ └── z_en_bird.hpp │ │ ├── En_Blkobj │ │ │ ├── z_en_blkobj.cpp │ │ │ └── z_en_blkobj.hpp │ │ ├── En_Bom │ │ │ ├── z_en_bom.cpp │ │ │ └── z_en_bom.hpp │ │ ├── En_Bom_Bowl_Man │ │ │ ├── z_en_bom_bowl_man.cpp │ │ │ └── z_en_bom_bowl_man.hpp │ │ ├── En_Bom_Bowl_Pit │ │ │ ├── z_en_bom_bowl_pit.cpp │ │ │ └── z_en_bom_bowl_pit.hpp │ │ ├── En_Bom_Chu │ │ │ ├── z_en_bom_chu.cpp │ │ │ └── z_en_bom_chu.hpp │ │ ├── En_Bombf │ │ │ ├── z_en_bombf.cpp │ │ │ └── z_en_bombf.hpp │ │ ├── En_Boom │ │ │ ├── z_en_boom.cpp │ │ │ └── z_en_boom.hpp │ │ ├── En_Box │ │ │ ├── z_en_box.cpp │ │ │ └── z_en_box.hpp │ │ ├── En_Brob │ │ │ ├── z_en_brob.cpp │ │ │ └── z_en_brob.hpp │ │ ├── En_Bubble │ │ │ ├── z_en_bubble.cpp │ │ │ └── z_en_bubble.hpp │ │ ├── En_Butte │ │ │ ├── z_en_butte.cpp │ │ │ └── z_en_butte.hpp │ │ ├── En_Bw │ │ │ ├── z_en_bw.cpp │ │ │ └── z_en_bw.hpp │ │ ├── En_Bx │ │ │ ├── z_en_bx.cpp │ │ │ └── z_en_bx.hpp │ │ ├── En_Changer │ │ │ ├── z_en_changer.cpp │ │ │ └── z_en_changer.hpp │ │ ├── En_Clear_Tag │ │ │ ├── z_en_clear_tag.cpp │ │ │ └── z_en_clear_tag.hpp │ │ ├── En_Cow │ │ │ ├── z_en_cow.cpp │ │ │ └── z_en_cow.hpp │ │ ├── En_Crow │ │ │ ├── z_en_crow.cpp │ │ │ └── z_en_crow.hpp │ │ ├── En_Cs │ │ │ ├── z_en_cs.cpp │ │ │ └── z_en_cs.hpp │ │ ├── En_Daiku │ │ │ ├── z_en_daiku.cpp │ │ │ └── z_en_daiku.hpp │ │ ├── En_Daiku_Kakariko │ │ │ ├── z_en_daiku_kakariko.cpp │ │ │ └── z_en_daiku_kakariko.hpp │ │ ├── En_Dekubaba │ │ │ ├── z_en_dekubaba.cpp │ │ │ └── z_en_dekubaba.hpp │ │ ├── En_Dekunuts │ │ │ ├── z_en_dekunuts.cpp │ │ │ └── z_en_dekunuts.hpp │ │ ├── En_Dh │ │ │ ├── z_en_dh.cpp │ │ │ └── z_en_dh.hpp │ │ ├── En_Dha │ │ │ ├── z_en_dha.cpp │ │ │ └── z_en_dha.hpp │ │ ├── En_Diving_Game │ │ │ ├── z_en_diving_game.cpp │ │ │ └── z_en_diving_game.hpp │ │ ├── En_Dns │ │ │ ├── z_en_dns.cpp │ │ │ └── z_en_dns.hpp │ │ ├── En_Dnt_Demo │ │ │ ├── z_en_dnt_demo.cpp │ │ │ └── z_en_dnt_demo.hpp │ │ ├── En_Dnt_Jiji │ │ │ ├── z_en_dnt_jiji.cpp │ │ │ └── z_en_dnt_jiji.hpp │ │ ├── En_Dnt_Nomal │ │ │ ├── z_en_dnt_nomal.cpp │ │ │ └── z_en_dnt_nomal.hpp │ │ ├── En_Dodojr │ │ │ ├── z_en_dodojr.cpp │ │ │ └── z_en_dodojr.hpp │ │ ├── En_Dodongo │ │ │ ├── z_en_dodongo.cpp │ │ │ └── z_en_dodongo.hpp │ │ ├── En_Dog │ │ │ ├── z_en_dog.cpp │ │ │ └── z_en_dog.hpp │ │ ├── En_Door │ │ │ ├── z_en_door.cpp │ │ │ └── z_en_door.hpp │ │ ├── En_Ds │ │ │ ├── z_en_ds.cpp │ │ │ └── z_en_ds.hpp │ │ ├── En_Du │ │ │ ├── z_en_du.cpp │ │ │ └── z_en_du.hpp │ │ ├── En_Dy_Extra │ │ │ ├── z_en_dy_extra.cpp │ │ │ └── z_en_dy_extra.hpp │ │ ├── En_Eg │ │ │ ├── z_en_eg.cpp │ │ │ └── z_en_eg.hpp │ │ ├── En_Eiyer │ │ │ ├── z_en_eiyer.cpp │ │ │ └── z_en_eiyer.hpp │ │ ├── En_Elf │ │ │ ├── z_en_elf.cpp │ │ │ └── z_en_elf.hpp │ │ ├── En_Encount1 │ │ │ ├── z_en_encount1.cpp │ │ │ └── z_en_encount1.hpp │ │ ├── En_Encount2 │ │ │ ├── z_en_encount2.cpp │ │ │ └── z_en_encount2.hpp │ │ ├── En_Ex_Item │ │ │ ├── z_en_ex_item.cpp │ │ │ └── z_en_ex_item.hpp │ │ ├── En_Ex_Ruppy │ │ │ ├── z_en_ex_ruppy.cpp │ │ │ └── z_en_ex_ruppy.hpp │ │ ├── En_Fd │ │ │ ├── z_en_fd.cpp │ │ │ └── z_en_fd.hpp │ │ ├── En_Fd_Fire │ │ │ ├── z_en_fd_fire.cpp │ │ │ └── z_en_fd_fire.hpp │ │ ├── En_Fhg_Fire │ │ │ ├── z_en_fhg_fire.cpp │ │ │ └── z_en_fhg_fire.hpp │ │ ├── En_Fire_Rock │ │ │ ├── z_en_fire_rock.cpp │ │ │ └── z_en_fire_rock.hpp │ │ ├── En_Firefly │ │ │ ├── z_en_firefly.cpp │ │ │ └── z_en_firefly.hpp │ │ ├── En_Fish │ │ │ ├── z_en_fish.cpp │ │ │ └── z_en_fish.hpp │ │ ├── En_Floormas │ │ │ ├── z_en_floormas.cpp │ │ │ └── z_en_floormas.hpp │ │ ├── En_Fr │ │ │ ├── z_en_fr.cpp │ │ │ └── z_en_fr.hpp │ │ ├── En_Fu │ │ │ ├── z_en_fu.cpp │ │ │ └── z_en_fu.hpp │ │ ├── En_Fw │ │ │ ├── z_en_fw.cpp │ │ │ └── z_en_fw.hpp │ │ ├── En_Fz │ │ │ ├── z_en_fz.cpp │ │ │ └── z_en_fz.hpp │ │ ├── En_G_Switch │ │ │ ├── z_en_g_switch.cpp │ │ │ └── z_en_g_switch.hpp │ │ ├── En_Ganon_Mant │ │ │ ├── z_en_ganon_mant.cpp │ │ │ └── z_en_ganon_mant.hpp │ │ ├── En_Ganon_Organ │ │ │ ├── z_en_ganon_organ.cpp │ │ │ └── z_en_ganon_organ.hpp │ │ ├── En_Gb │ │ │ ├── z_en_gb.cpp │ │ │ └── z_en_gb.hpp │ │ ├── En_Ge1 │ │ │ ├── z_en_ge1.cpp │ │ │ └── z_en_ge1.hpp │ │ ├── En_Ge2 │ │ │ ├── z_en_ge2.cpp │ │ │ └── z_en_ge2.hpp │ │ ├── En_Ge3 │ │ │ ├── z_en_ge3.cpp │ │ │ └── z_en_ge3.hpp │ │ ├── En_GeldB │ │ │ ├── z_en_geldb.cpp │ │ │ └── z_en_geldb.hpp │ │ ├── En_GirlA │ │ │ ├── z_en_girla.cpp │ │ │ └── z_en_girla.hpp │ │ ├── En_Gm │ │ │ ├── z_en_gm.cpp │ │ │ └── z_en_gm.hpp │ │ ├── En_Go2 │ │ │ ├── z_en_go2.cpp │ │ │ └── z_en_go2.hpp │ │ ├── En_Goma │ │ │ ├── z_en_goma.cpp │ │ │ └── z_en_goma.hpp │ │ ├── En_Goroiwa │ │ │ ├── z_en_goroiwa.cpp │ │ │ └── z_en_goroiwa.hpp │ │ ├── En_Gs │ │ │ ├── z_en_gs.cpp │ │ │ └── z_en_gs.hpp │ │ ├── En_Guest │ │ │ ├── z_en_guest.cpp │ │ │ └── z_en_guest.hpp │ │ ├── En_Hata │ │ │ ├── z_en_hata.cpp │ │ │ └── z_en_hata.hpp │ │ ├── En_Heishi1 │ │ │ ├── z_en_heishi1.cpp │ │ │ └── z_en_heishi1.hpp │ │ ├── En_Heishi2 │ │ │ ├── z_en_heishi2.cpp │ │ │ └── z_en_heishi2.hpp │ │ ├── En_Heishi3 │ │ │ ├── z_en_heishi3.cpp │ │ │ └── z_en_heishi3.hpp │ │ ├── En_Heishi4 │ │ │ ├── z_en_heishi4.cpp │ │ │ └── z_en_heishi4.hpp │ │ ├── En_Hintnuts │ │ │ ├── z_en_hintnuts.cpp │ │ │ └── z_en_hintnuts.hpp │ │ ├── En_Holl │ │ │ ├── z_en_holl.cpp │ │ │ └── z_en_holl.hpp │ │ ├── En_Honotrap │ │ │ ├── z_en_honotrap.cpp │ │ │ └── z_en_honotrap.hpp │ │ ├── En_Horse │ │ │ ├── z_en_horse.cpp │ │ │ └── z_en_horse.hpp │ │ ├── En_Horse_Game_Check │ │ │ ├── z_en_horse_game_check.cpp │ │ │ └── z_en_horse_game_check.hpp │ │ ├── En_Horse_Ganon │ │ │ ├── z_en_horse_ganon.cpp │ │ │ └── z_en_horse_ganon.hpp │ │ ├── En_Horse_Link_Child │ │ │ ├── z_en_horse_link_child.cpp │ │ │ └── z_en_horse_link_child.hpp │ │ ├── En_Horse_Normal │ │ │ ├── z_en_horse_normal.cpp │ │ │ └── z_en_horse_normal.hpp │ │ ├── En_Horse_Zelda │ │ │ ├── z_en_horse_zelda.cpp │ │ │ └── z_en_horse_zelda.hpp │ │ ├── En_Hs │ │ │ ├── z_en_hs.cpp │ │ │ └── z_en_hs.hpp │ │ ├── En_Hs2 │ │ │ ├── z_en_hs2.cpp │ │ │ └── z_en_hs2.hpp │ │ ├── En_Hy │ │ │ ├── z_en_hy.cpp │ │ │ └── z_en_hy.hpp │ │ ├── En_Ice_Hono │ │ │ ├── z_en_ice_hono.cpp │ │ │ └── z_en_ice_hono.hpp │ │ ├── En_Ik │ │ │ ├── z_en_ik.cpp │ │ │ └── z_en_ik.hpp │ │ ├── En_In │ │ │ ├── z_en_in.cpp │ │ │ └── z_en_in.hpp │ │ ├── En_Insect │ │ │ ├── z_en_insect.cpp │ │ │ └── z_en_insect.hpp │ │ ├── En_Ishi │ │ │ ├── z_en_ishi.cpp │ │ │ └── z_en_ishi.hpp │ │ ├── En_It │ │ │ ├── z_en_it.cpp │ │ │ └── z_en_it.hpp │ │ ├── En_Item00 │ │ │ ├── z_en_item00.cpp │ │ │ └── z_en_item00.hpp │ │ ├── En_Jj │ │ │ ├── z_en_jj.cpp │ │ │ └── z_en_jj.hpp │ │ ├── En_Js │ │ │ ├── z_en_js.cpp │ │ │ └── z_en_js.hpp │ │ ├── En_Jsjutan │ │ │ ├── z_en_jsjutan.cpp │ │ │ └── z_en_jsjutan.hpp │ │ ├── En_Kakasi │ │ │ ├── z_en_kakasi.cpp │ │ │ └── z_en_kakasi.hpp │ │ ├── En_Kakasi2 │ │ │ ├── z_en_kakasi2.cpp │ │ │ └── z_en_kakasi2.hpp │ │ ├── En_Kakasi3 │ │ │ ├── z_en_kakasi3.cpp │ │ │ └── z_en_kakasi3.hpp │ │ ├── En_Kanban │ │ │ ├── z_en_kanban.cpp │ │ │ └── z_en_kanban.hpp │ │ ├── En_Karebaba │ │ │ ├── z_en_karebaba.cpp │ │ │ └── z_en_karebaba.hpp │ │ ├── En_Ko │ │ │ ├── z_en_ko.cpp │ │ │ └── z_en_ko.hpp │ │ ├── En_Kusa │ │ │ ├── z_en_kusa.cpp │ │ │ └── z_en_kusa.hpp │ │ ├── En_Kz │ │ │ ├── z_en_kz.cpp │ │ │ └── z_en_kz.hpp │ │ ├── En_Light │ │ │ ├── z_en_light.cpp │ │ │ └── z_en_light.hpp │ │ ├── En_Lightbox │ │ │ ├── z_en_lightbox.cpp │ │ │ └── z_en_lightbox.hpp │ │ ├── En_M_Fire1 │ │ │ ├── z_en_m_fire1.cpp │ │ │ └── z_en_m_fire1.hpp │ │ ├── En_M_Thunder │ │ │ ├── z_en_m_thunder.cpp │ │ │ └── z_en_m_thunder.hpp │ │ ├── En_Ma1 │ │ │ ├── z_en_ma1.cpp │ │ │ └── z_en_ma1.hpp │ │ ├── En_Ma2 │ │ │ ├── z_en_ma2.cpp │ │ │ └── z_en_ma2.hpp │ │ ├── En_Ma3 │ │ │ ├── z_en_ma3.cpp │ │ │ └── z_en_ma3.hpp │ │ ├── En_Mag │ │ │ ├── z_en_mag.cpp │ │ │ └── z_en_mag.hpp │ │ ├── En_Mb │ │ │ ├── z_en_mb.cpp │ │ │ └── z_en_mb.hpp │ │ ├── En_Md │ │ │ ├── z_en_md.cpp │ │ │ └── z_en_md.hpp │ │ ├── En_Mk │ │ │ ├── z_en_mk.cpp │ │ │ └── z_en_mk.hpp │ │ ├── En_Mm │ │ │ ├── z_en_mm.cpp │ │ │ └── z_en_mm.hpp │ │ ├── En_Mm2 │ │ │ ├── z_en_mm2.cpp │ │ │ └── z_en_mm2.hpp │ │ ├── En_Ms │ │ │ ├── z_en_ms.cpp │ │ │ └── z_en_ms.hpp │ │ ├── En_Mu │ │ │ ├── z_en_mu.cpp │ │ │ └── z_en_mu.hpp │ │ ├── En_Nb │ │ │ ├── z_en_nb.cpp │ │ │ └── z_en_nb.hpp │ │ ├── En_Niw │ │ │ ├── z_en_niw.cpp │ │ │ └── z_en_niw.hpp │ │ ├── En_Niw_Girl │ │ │ ├── z_en_niw_girl.cpp │ │ │ └── z_en_niw_girl.hpp │ │ ├── En_Niw_Lady │ │ │ ├── z_en_niw_lady.cpp │ │ │ └── z_en_niw_lady.hpp │ │ ├── En_Nutsball │ │ │ ├── z_en_nutsball.cpp │ │ │ └── z_en_nutsball.hpp │ │ ├── En_Nwc │ │ │ ├── z_en_nwc.cpp │ │ │ └── z_en_nwc.hpp │ │ ├── En_Ny │ │ │ ├── z_en_ny.cpp │ │ │ └── z_en_ny.hpp │ │ ├── En_OE2 │ │ │ ├── z_en_oe2.cpp │ │ │ └── z_en_oe2.hpp │ │ ├── En_Okarina_Effect │ │ │ ├── z_en_okarina_effect.cpp │ │ │ └── z_en_okarina_effect.hpp │ │ ├── En_Okarina_Tag │ │ │ ├── z_en_okarina_tag.cpp │ │ │ └── z_en_okarina_tag.hpp │ │ ├── En_Okuta │ │ │ ├── z_en_okuta.cpp │ │ │ └── z_en_okuta.hpp │ │ ├── En_Ossan │ │ │ ├── z_en_ossan.cpp │ │ │ └── z_en_ossan.hpp │ │ ├── En_Owl │ │ │ ├── z_en_owl.cpp │ │ │ └── z_en_owl.hpp │ │ ├── En_Part │ │ │ ├── z_en_part.cpp │ │ │ └── z_en_part.hpp │ │ ├── En_Peehat │ │ │ ├── z_en_peehat.cpp │ │ │ └── z_en_peehat.hpp │ │ ├── En_Po_Desert │ │ │ ├── z_en_po_desert.cpp │ │ │ └── z_en_po_desert.hpp │ │ ├── En_Po_Field │ │ │ ├── z_en_po_field.cpp │ │ │ └── z_en_po_field.hpp │ │ ├── En_Po_Relay │ │ │ ├── z_en_po_relay.cpp │ │ │ └── z_en_po_relay.hpp │ │ ├── En_Po_Sisters │ │ │ ├── z_en_po_sisters.cpp │ │ │ └── z_en_po_sisters.hpp │ │ ├── En_Poh │ │ │ ├── z_en_poh.cpp │ │ │ └── z_en_poh.hpp │ │ ├── En_Pu_box │ │ │ ├── z_en_pu_box.cpp │ │ │ └── z_en_pu_box.hpp │ │ ├── En_Rd │ │ │ ├── z_en_rd.cpp │ │ │ └── z_en_rd.hpp │ │ ├── En_Reeba │ │ │ ├── z_en_reeba.cpp │ │ │ └── z_en_reeba.hpp │ │ ├── En_River_Sound │ │ │ ├── z_en_river_sound.cpp │ │ │ └── z_en_river_sound.hpp │ │ ├── En_Rl │ │ │ ├── z_en_rl.cpp │ │ │ └── z_en_rl.hpp │ │ ├── En_Rr │ │ │ ├── z_en_rr.cpp │ │ │ └── z_en_rr.hpp │ │ ├── En_Ru1 │ │ │ ├── z_en_ru1.cpp │ │ │ └── z_en_ru1.hpp │ │ ├── En_Ru2 │ │ │ ├── z_en_ru2.cpp │ │ │ └── z_en_ru2.hpp │ │ ├── En_Sa │ │ │ ├── z_en_sa.cpp │ │ │ └── z_en_sa.hpp │ │ ├── En_Sb │ │ │ ├── z_en_sb.cpp │ │ │ └── z_en_sb.hpp │ │ ├── En_Scene_Change │ │ │ ├── z_en_scene_change.cpp │ │ │ └── z_en_scene_change.hpp │ │ ├── En_Sda │ │ │ ├── z_en_sda.cpp │ │ │ └── z_en_sda.hpp │ │ ├── En_Shopnuts │ │ │ ├── z_en_shopnuts.cpp │ │ │ └── z_en_shopnuts.hpp │ │ ├── En_Si │ │ │ ├── z_en_si.cpp │ │ │ └── z_en_si.hpp │ │ ├── En_Siofuki │ │ │ ├── z_en_siofuki.cpp │ │ │ └── z_en_siofuki.hpp │ │ ├── En_Skb │ │ │ ├── z_en_skb.cpp │ │ │ └── z_en_skb.hpp │ │ ├── En_Skj │ │ │ ├── z_en_skj.cpp │ │ │ └── z_en_skj.hpp │ │ ├── En_Skjneedle │ │ │ ├── z_en_skjneedle.cpp │ │ │ └── z_en_skjneedle.hpp │ │ ├── En_Ssh │ │ │ ├── z_en_ssh.cpp │ │ │ └── z_en_ssh.hpp │ │ ├── En_St │ │ │ ├── z_en_st.cpp │ │ │ └── z_en_st.hpp │ │ ├── En_Sth │ │ │ ├── z_en_sth.cpp │ │ │ └── z_en_sth.hpp │ │ ├── En_Stream │ │ │ ├── z_en_stream.cpp │ │ │ └── z_en_stream.hpp │ │ ├── En_Sw │ │ │ ├── z_en_sw.cpp │ │ │ └── z_en_sw.hpp │ │ ├── En_Syateki_Itm │ │ │ ├── z_en_syateki_itm.cpp │ │ │ └── z_en_syateki_itm.hpp │ │ ├── En_Syateki_Man │ │ │ ├── z_en_syateki_man.cpp │ │ │ └── z_en_syateki_man.hpp │ │ ├── En_Syateki_Niw │ │ │ ├── z_en_syateki_niw.cpp │ │ │ └── z_en_syateki_niw.hpp │ │ ├── En_Ta │ │ │ ├── z_en_ta.cpp │ │ │ └── z_en_ta.hpp │ │ ├── En_Takara_Man │ │ │ ├── z_en_takara_man.cpp │ │ │ └── z_en_takara_man.hpp │ │ ├── En_Tana │ │ │ ├── z_en_tana.cpp │ │ │ └── z_en_tana.hpp │ │ ├── En_Test │ │ │ ├── z_en_test.cpp │ │ │ └── z_en_test.hpp │ │ ├── En_Tg │ │ │ ├── z_en_tg.cpp │ │ │ └── z_en_tg.hpp │ │ ├── En_Tite │ │ │ ├── z_en_tite.cpp │ │ │ └── z_en_tite.hpp │ │ ├── En_Tk │ │ │ ├── z_en_tk.cpp │ │ │ └── z_en_tk.hpp │ │ ├── En_Torch │ │ │ ├── z_en_torch.cpp │ │ │ └── z_en_torch.hpp │ │ ├── En_Torch2 │ │ │ ├── z_en_torch2.cpp │ │ │ └── z_en_torch2.hpp │ │ ├── En_Toryo │ │ │ ├── z_en_toryo.cpp │ │ │ └── z_en_toryo.hpp │ │ ├── En_Tp │ │ │ ├── z_en_tp.cpp │ │ │ └── z_en_tp.hpp │ │ ├── En_Tr │ │ │ ├── z_en_tr.cpp │ │ │ └── z_en_tr.hpp │ │ ├── En_Trap │ │ │ ├── z_en_trap.cpp │ │ │ └── z_en_trap.hpp │ │ ├── En_Tubo_Trap │ │ │ ├── z_en_tubo_trap.cpp │ │ │ └── z_en_tubo_trap.hpp │ │ ├── En_Vali │ │ │ ├── z_en_vali.cpp │ │ │ └── z_en_vali.hpp │ │ ├── En_Vase │ │ │ ├── z_en_vase.cpp │ │ │ └── z_en_vase.hpp │ │ ├── En_Vb_Ball │ │ │ ├── z_en_vb_ball.cpp │ │ │ └── z_en_vb_ball.hpp │ │ ├── En_Viewer │ │ │ ├── z_en_viewer.cpp │ │ │ └── z_en_viewer.hpp │ │ ├── En_Vm │ │ │ ├── z_en_vm.cpp │ │ │ └── z_en_vm.hpp │ │ ├── En_Wall_Tubo │ │ │ ├── z_en_wall_tubo.cpp │ │ │ └── z_en_wall_tubo.hpp │ │ ├── En_Wallmas │ │ │ ├── z_en_wallmas.cpp │ │ │ └── z_en_wallmas.hpp │ │ ├── En_Weather_Tag │ │ │ ├── z_en_weather_tag.cpp │ │ │ └── z_en_weather_tag.hpp │ │ ├── En_Weiyer │ │ │ ├── z_en_weiyer.cpp │ │ │ └── z_en_weiyer.hpp │ │ ├── En_Wf │ │ │ ├── z_en_wf.cpp │ │ │ └── z_en_wf.hpp │ │ ├── En_Wonder_Item │ │ │ ├── z_en_wonder_item.cpp │ │ │ └── z_en_wonder_item.hpp │ │ ├── En_Wonder_Talk │ │ │ ├── z_en_wonder_talk.cpp │ │ │ └── z_en_wonder_talk.hpp │ │ ├── En_Wonder_Talk2 │ │ │ ├── z_en_wonder_talk2.cpp │ │ │ └── z_en_wonder_talk2.hpp │ │ ├── En_Wood02 │ │ │ ├── z_en_wood02.cpp │ │ │ └── z_en_wood02.hpp │ │ ├── En_Xc │ │ │ ├── z_en_xc.cpp │ │ │ └── z_en_xc.hpp │ │ ├── En_Yabusame_Mark │ │ │ ├── z_en_yabusame_mark.cpp │ │ │ └── z_en_yabusame_mark.hpp │ │ ├── En_Yukabyun │ │ │ ├── z_en_yukabyun.cpp │ │ │ └── z_en_yukabyun.hpp │ │ ├── En_Zf │ │ │ ├── z_en_zf.cpp │ │ │ └── z_en_zf.hpp │ │ ├── En_Zl1 │ │ │ ├── z_en_zl1.cpp │ │ │ └── z_en_zl1.hpp │ │ ├── En_Zl2 │ │ │ ├── z_en_zl2.cpp │ │ │ └── z_en_zl2.hpp │ │ ├── En_Zl3 │ │ │ ├── z_en_zl3.cpp │ │ │ └── z_en_zl3.hpp │ │ ├── En_Zl4 │ │ │ ├── z_en_zl4.cpp │ │ │ └── z_en_zl4.hpp │ │ ├── En_Zo │ │ │ ├── z_en_zo.cpp │ │ │ └── z_en_zo.hpp │ │ ├── En_fHG │ │ │ ├── z_en_fhg.cpp │ │ │ └── z_en_fhg.hpp │ │ ├── End_Title │ │ │ ├── z_end_title.cpp │ │ │ └── z_end_title.hpp │ │ ├── Fishing │ │ │ ├── z_fishing.cpp │ │ │ └── z_fishing.hpp │ │ ├── Item_B_Heart │ │ │ ├── z_item_b_heart.cpp │ │ │ └── z_item_b_heart.hpp │ │ ├── Item_Etcetera │ │ │ ├── z_item_etcetera.cpp │ │ │ └── z_item_etcetera.hpp │ │ ├── Item_Inbox │ │ │ ├── z_item_inbox.cpp │ │ │ └── z_item_inbox.hpp │ │ ├── Item_Ocarina │ │ │ ├── z_item_ocarina.cpp │ │ │ └── z_item_ocarina.hpp │ │ ├── Item_Shield │ │ │ ├── z_item_shield.cpp │ │ │ └── z_item_shield.hpp │ │ ├── Magic_Dark │ │ │ ├── z_magic_dark.cpp │ │ │ └── z_magic_dark.hpp │ │ ├── Magic_Fire │ │ │ ├── z_magic_fire.cpp │ │ │ └── z_magic_fire.hpp │ │ ├── Magic_Wind │ │ │ ├── z_magic_wind.cpp │ │ │ └── z_magic_wind.hpp │ │ ├── Mir_Ray │ │ │ ├── z_mir_ray.cpp │ │ │ └── z_mir_ray.hpp │ │ ├── Obj_Bean │ │ │ ├── z_obj_bean.cpp │ │ │ └── z_obj_bean.hpp │ │ ├── Obj_Blockstop │ │ │ ├── z_obj_blockstop.cpp │ │ │ └── z_obj_blockstop.hpp │ │ ├── Obj_Bombiwa │ │ │ ├── z_obj_bombiwa.cpp │ │ │ └── z_obj_bombiwa.hpp │ │ ├── Obj_Comb │ │ │ ├── z_obj_comb.cpp │ │ │ └── z_obj_comb.hpp │ │ ├── Obj_Dekujr │ │ │ ├── z_obj_dekujr.cpp │ │ │ └── z_obj_dekujr.hpp │ │ ├── Obj_Elevator │ │ │ ├── z_obj_elevator.cpp │ │ │ └── z_obj_elevator.hpp │ │ ├── Obj_Hamishi │ │ │ ├── z_obj_hamishi.cpp │ │ │ └── z_obj_hamishi.hpp │ │ ├── Obj_Hana │ │ │ ├── z_obj_hana.cpp │ │ │ └── z_obj_hana.hpp │ │ ├── Obj_Hsblock │ │ │ ├── z_obj_hsblock.cpp │ │ │ └── z_obj_hsblock.hpp │ │ ├── Obj_Ice_Poly │ │ │ ├── z_obj_ice_poly.cpp │ │ │ └── z_obj_ice_poly.hpp │ │ ├── Obj_Kibako │ │ │ ├── z_obj_kibako.cpp │ │ │ └── z_obj_kibako.hpp │ │ ├── Obj_Kibako2 │ │ │ ├── z_obj_kibako2.cpp │ │ │ └── z_obj_kibako2.hpp │ │ ├── Obj_Lift │ │ │ ├── z_obj_lift.cpp │ │ │ └── z_obj_lift.hpp │ │ ├── Obj_Lightswitch │ │ │ ├── z_obj_lightswitch.cpp │ │ │ └── z_obj_lightswitch.hpp │ │ ├── Obj_Makekinsuta │ │ │ ├── z_obj_makekinsuta.cpp │ │ │ └── z_obj_makekinsuta.hpp │ │ ├── Obj_Makeoshihiki │ │ │ ├── z_obj_makeoshihiki.cpp │ │ │ └── z_obj_makeoshihiki.hpp │ │ ├── Obj_Mure │ │ │ ├── z_obj_mure.cpp │ │ │ └── z_obj_mure.hpp │ │ ├── Obj_Mure2 │ │ │ ├── z_obj_mure2.cpp │ │ │ └── z_obj_mure2.hpp │ │ ├── Obj_Mure3 │ │ │ ├── z_obj_mure3.cpp │ │ │ └── z_obj_mure3.hpp │ │ ├── Obj_Oshihiki │ │ │ ├── z_obj_oshihiki.cpp │ │ │ └── z_obj_oshihiki.hpp │ │ ├── Obj_Roomtimer │ │ │ ├── z_obj_roomtimer.cpp │ │ │ └── z_obj_roomtimer.hpp │ │ ├── Obj_Switch │ │ │ ├── z_obj_switch.cpp │ │ │ └── z_obj_switch.hpp │ │ ├── Obj_Syokudai │ │ │ ├── z_obj_syokudai.cpp │ │ │ └── z_obj_syokudai.hpp │ │ ├── Obj_Timeblock │ │ │ ├── z_obj_timeblock.cpp │ │ │ └── z_obj_timeblock.hpp │ │ ├── Obj_Tsubo │ │ │ ├── z_obj_tsubo.cpp │ │ │ └── z_obj_tsubo.hpp │ │ ├── Obj_Warp2block │ │ │ ├── z_obj_warp2block.cpp │ │ │ └── z_obj_warp2block.hpp │ │ ├── Object_Kankyo │ │ │ ├── z_object_kankyo.cpp │ │ │ └── z_object_kankyo.hpp │ │ ├── Oceff_Spot │ │ │ ├── z_oceff_spot.cpp │ │ │ └── z_oceff_spot.hpp │ │ ├── Oceff_Storm │ │ │ ├── z_oceff_storm.cpp │ │ │ └── z_oceff_storm.hpp │ │ ├── Oceff_Wipe │ │ │ ├── z_oceff_wipe.cpp │ │ │ └── z_oceff_wipe.hpp │ │ ├── Oceff_Wipe2 │ │ │ ├── z_oceff_wipe2.cpp │ │ │ └── z_oceff_wipe2.hpp │ │ ├── Oceff_Wipe3 │ │ │ ├── z_oceff_wipe3.cpp │ │ │ └── z_oceff_wipe3.hpp │ │ ├── Oceff_Wipe4 │ │ │ ├── z_oceff_wipe4.cpp │ │ │ └── z_oceff_wipe4.hpp │ │ ├── Player │ │ │ └── z_player.cpp │ │ └── Shot_Sun │ │ │ ├── z_shot_sun.cpp │ │ │ ├── z_shot_sun.hpp │ │ │ └── z_shot_sun.spec │ ├── classes │ │ ├── Class_4EBE18.cpp │ │ └── Class_4EBE18.h │ ├── skeleton_animation_model.cpp │ ├── z3D.cpp │ ├── z_actor.cpp │ ├── z_actor_table.cpp │ ├── z_animation.cpp │ ├── z_bgcheck.cpp │ ├── z_camera.cpp │ ├── z_collision_check.cpp │ ├── z_common_data.cpp │ ├── z_demo.cpp │ ├── z_eff_blure.cpp │ ├── z_effect.cpp │ ├── z_equipment.cpp │ ├── z_face_reaction.cpp │ ├── z_lib.cpp │ ├── z_play.cpp │ ├── z_skelanime.cpp │ └── zar.cpp └── nn │ ├── applet.cpp │ ├── dbg.cpp │ ├── dsp.cpp │ ├── err.cpp │ ├── os.cpp │ ├── srv.cpp │ └── svc.cpp └── tools ├── ctx.py ├── preproc.py └── progress.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/.gitmodules -------------------------------------------------------------------------------- /ARMCC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/ARMCC.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/README.md -------------------------------------------------------------------------------- /data/checksum.md5: -------------------------------------------------------------------------------- 1 | 20c7ec6288ba0af4feb6db646c6cc6d5 build/code.bin 2 | -------------------------------------------------------------------------------- /data/keep_symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/data/keep_symbols.txt -------------------------------------------------------------------------------- /data/oot3d.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/data/oot3d.ld -------------------------------------------------------------------------------- /diff_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/diff_settings.py -------------------------------------------------------------------------------- /disassembly/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/CMakeLists.txt -------------------------------------------------------------------------------- /disassembly/SHT__INIT_ARRAY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/SHT__INIT_ARRAY.txt -------------------------------------------------------------------------------- /disassembly/data_chunks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/data_chunks.txt -------------------------------------------------------------------------------- /disassembly/oot3d.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/oot3d.cfg -------------------------------------------------------------------------------- /disassembly/rodata_chunks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/rodata_chunks.txt -------------------------------------------------------------------------------- /disassembly/tools/baserom_fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/tools/baserom_fixes.py -------------------------------------------------------------------------------- /disassembly/tools/ctrtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/tools/ctrtool -------------------------------------------------------------------------------- /disassembly/tools/ctrtool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/tools/ctrtool.exe -------------------------------------------------------------------------------- /disassembly/tools/e2elf.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/tools/e2elf.ld -------------------------------------------------------------------------------- /disassembly/tools/exefs2elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/tools/exefs2elf.py -------------------------------------------------------------------------------- /disassembly/tools/gcc_to_arm_asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/tools/gcc_to_arm_asm.py -------------------------------------------------------------------------------- /disassembly/tools/n3dsdisasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/tools/n3dsdisasm -------------------------------------------------------------------------------- /disassembly/tools/n3dsdisasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/tools/n3dsdisasm.exe -------------------------------------------------------------------------------- /disassembly/tools/split_arm_data_chunks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/disassembly/tools/split_arm_data_chunks.py -------------------------------------------------------------------------------- /include/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/color.hpp -------------------------------------------------------------------------------- /include/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/functions.hpp -------------------------------------------------------------------------------- /include/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/global.hpp -------------------------------------------------------------------------------- /include/graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/graphics.hpp -------------------------------------------------------------------------------- /include/graphics/skeleton_animation_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/graphics/skeleton_animation_model.hpp -------------------------------------------------------------------------------- /include/ichain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/ichain.hpp -------------------------------------------------------------------------------- /include/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/libcpp.hpp -------------------------------------------------------------------------------- /include/libcpp/lib_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/libcpp/lib_functions.hpp -------------------------------------------------------------------------------- /include/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/macros.hpp -------------------------------------------------------------------------------- /include/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/math.hpp -------------------------------------------------------------------------------- /include/non_matchings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/non_matchings.hpp -------------------------------------------------------------------------------- /include/regs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/regs.hpp -------------------------------------------------------------------------------- /include/stddef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/stddef.hpp -------------------------------------------------------------------------------- /include/sys_math3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/sys_math3d.hpp -------------------------------------------------------------------------------- /include/tables/actor_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/tables/actor_table.hpp -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/types.h -------------------------------------------------------------------------------- /include/variables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/variables.hpp -------------------------------------------------------------------------------- /include/z3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3D.hpp -------------------------------------------------------------------------------- /include/z3Dactor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3Dactor.hpp -------------------------------------------------------------------------------- /include/z3Danimation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3Danimation.hpp -------------------------------------------------------------------------------- /include/z3Dbgcheck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3Dbgcheck.hpp -------------------------------------------------------------------------------- /include/z3Dcamera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3Dcamera.hpp -------------------------------------------------------------------------------- /include/z3Dcollision_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3Dcollision_check.hpp -------------------------------------------------------------------------------- /include/z3Dcutscene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3Dcutscene.hpp -------------------------------------------------------------------------------- /include/z3Ditem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3Ditem.hpp -------------------------------------------------------------------------------- /include/z3Dmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3Dmath.hpp -------------------------------------------------------------------------------- /include/z3Dobject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3Dobject.hpp -------------------------------------------------------------------------------- /include/z3Dsave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3Dsave.hpp -------------------------------------------------------------------------------- /include/z3Dscene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3Dscene.hpp -------------------------------------------------------------------------------- /include/z3Dvec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/include/z3Dvec.hpp -------------------------------------------------------------------------------- /library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/library/CMakeLists.txt -------------------------------------------------------------------------------- /src/SHT__INIT_ARRAY.cpp: -------------------------------------------------------------------------------- 1 | #include "non_matchings.hpp" 2 | 3 | GLOBAL_ASM("data/SHT__INIT_ARRAY.s") 4 | -------------------------------------------------------------------------------- /src/crt0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/crt0.cpp -------------------------------------------------------------------------------- /src/cstring.cpp: -------------------------------------------------------------------------------- 1 | #include "non_matchings.hpp" 2 | 3 | GLOBAL_ASM("asm/_ZSt6strlenPKc.s") 4 | -------------------------------------------------------------------------------- /src/data/conststring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/data/conststring.cpp -------------------------------------------------------------------------------- /src/data/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/data/data.cpp -------------------------------------------------------------------------------- /src/data/rodata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/data/rodata.cpp -------------------------------------------------------------------------------- /src/functions/functions_100000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_100000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_120000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_120000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_140000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_140000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_180000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_180000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_1C0000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_1C0000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_200000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_200000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_240000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_240000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_280000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_280000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_2A0000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_2A0000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_2C0000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_2C0000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_2E0000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_2E0000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_300000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_300000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_310000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_310000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_320000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_320000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_340000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_340000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_350000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_350000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_360000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_360000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_370000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_370000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_380000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_380000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_3A0000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_3A0000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_3C0000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_3C0000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_3E0000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_3E0000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_400000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_400000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_408000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_408000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_410000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_410000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_420000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_420000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_440000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_440000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_460000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_460000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_480000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_480000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_4A0000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_4A0000s.cpp -------------------------------------------------------------------------------- /src/functions/functions_4C0000s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/functions/functions_4C0000s.cpp -------------------------------------------------------------------------------- /src/game/actors/Actor_1D7/z_actor_1d7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Actor_1D7/z_actor_1d7.cpp -------------------------------------------------------------------------------- /src/game/actors/Actor_1D7/z_actor_1d7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Actor_1D7/z_actor_1d7.hpp -------------------------------------------------------------------------------- /src/game/actors/Actor_1D8/z_actor_1d8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Actor_1D8/z_actor_1d8.cpp -------------------------------------------------------------------------------- /src/game/actors/Actor_1D8/z_actor_1d8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Actor_1D8/z_actor_1d8.hpp -------------------------------------------------------------------------------- /src/game/actors/Actor_1D9/z_actor_1d9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Actor_1D9/z_actor_1d9.cpp -------------------------------------------------------------------------------- /src/game/actors/Actor_1D9/z_actor_1d9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Actor_1D9/z_actor_1d9.hpp -------------------------------------------------------------------------------- /src/game/actors/Actor_1DA/z_actor_1da.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Actor_1DA/z_actor_1da.cpp -------------------------------------------------------------------------------- /src/game/actors/Actor_1DA/z_actor_1da.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Actor_1DA/z_actor_1da.hpp -------------------------------------------------------------------------------- /src/game/actors/Arms_Hook/z_arms_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Arms_Hook/z_arms_hook.cpp -------------------------------------------------------------------------------- /src/game/actors/Arms_Hook/z_arms_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Arms_Hook/z_arms_hook.hpp -------------------------------------------------------------------------------- /src/game/actors/Arrow_Fire/z_arrow_fire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Arrow_Fire/z_arrow_fire.cpp -------------------------------------------------------------------------------- /src/game/actors/Arrow_Fire/z_arrow_fire.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Arrow_Fire/z_arrow_fire.hpp -------------------------------------------------------------------------------- /src/game/actors/Arrow_Ice/z_arrow_ice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Arrow_Ice/z_arrow_ice.cpp -------------------------------------------------------------------------------- /src/game/actors/Arrow_Ice/z_arrow_ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Arrow_Ice/z_arrow_ice.hpp -------------------------------------------------------------------------------- /src/game/actors/Arrow_Light/z_arrow_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Arrow_Light/z_arrow_light.cpp -------------------------------------------------------------------------------- /src/game/actors/Arrow_Light/z_arrow_light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Arrow_Light/z_arrow_light.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Bdan_Switch/z_bg_bdan_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Bdan_Switch/z_bg_bdan_switch.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Bdan_Switch/z_bg_bdan_switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Bdan_Switch/z_bg_bdan_switch.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Bom_Guard/z_bg_bom_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Bom_Guard/z_bg_bom_guard.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Bom_Guard/z_bg_bom_guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Bom_Guard/z_bg_bom_guard.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Bombwall/z_bg_bombwall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Bombwall/z_bg_bombwall.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Bombwall/z_bg_bombwall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Bombwall/z_bg_bombwall.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Bowl_Wall/z_bg_bowl_wall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Bowl_Wall/z_bg_bowl_wall.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Bowl_Wall/z_bg_bowl_wall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Bowl_Wall/z_bg_bowl_wall.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Breakwall/z_bg_breakwall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Breakwall/z_bg_breakwall.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Breakwall/z_bg_breakwall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Breakwall/z_bg_breakwall.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ddan_Jd/z_bg_ddan_jd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ddan_Jd/z_bg_ddan_jd.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ddan_Jd/z_bg_ddan_jd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ddan_Jd/z_bg_ddan_jd.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ddan_Kd/z_bg_ddan_kd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ddan_Kd/z_bg_ddan_kd.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ddan_Kd/z_bg_ddan_kd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ddan_Kd/z_bg_ddan_kd.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Dodoago/z_bg_dodoago.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Dodoago/z_bg_dodoago.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Dodoago/z_bg_dodoago.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Dodoago/z_bg_dodoago.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Dy_Yoseizo/z_bg_dy_yoseizo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Dy_Yoseizo/z_bg_dy_yoseizo.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Dy_Yoseizo/z_bg_dy_yoseizo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Dy_Yoseizo/z_bg_dy_yoseizo.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Gjyo_Bridge/z_bg_gjyo_bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Gjyo_Bridge/z_bg_gjyo_bridge.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Gjyo_Bridge/z_bg_gjyo_bridge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Gjyo_Bridge/z_bg_gjyo_bridge.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka/z_bg_haka.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka/z_bg_haka.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka/z_bg_haka.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka/z_bg_haka.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Gate/z_bg_haka_gate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Gate/z_bg_haka_gate.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Gate/z_bg_haka_gate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Gate/z_bg_haka_gate.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Huta/z_bg_haka_huta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Huta/z_bg_haka_huta.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Huta/z_bg_haka_huta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Huta/z_bg_haka_huta.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Megane/z_bg_haka_megane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Megane/z_bg_haka_megane.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Megane/z_bg_haka_megane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Megane/z_bg_haka_megane.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Sgami/z_bg_haka_sgami.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Sgami/z_bg_haka_sgami.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Sgami/z_bg_haka_sgami.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Sgami/z_bg_haka_sgami.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Ship/z_bg_haka_ship.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Ship/z_bg_haka_ship.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Ship/z_bg_haka_ship.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Ship/z_bg_haka_ship.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Trap/z_bg_haka_trap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Trap/z_bg_haka_trap.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Trap/z_bg_haka_trap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Trap/z_bg_haka_trap.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Tubo/z_bg_haka_tubo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Tubo/z_bg_haka_tubo.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Tubo/z_bg_haka_tubo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Tubo/z_bg_haka_tubo.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Water/z_bg_haka_water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Water/z_bg_haka_water.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Water/z_bg_haka_water.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Water/z_bg_haka_water.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Zou/z_bg_haka_zou.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Zou/z_bg_haka_zou.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Haka_Zou/z_bg_haka_zou.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Haka_Zou/z_bg_haka_zou.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Heavy_Block/z_bg_heavy_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Heavy_Block/z_bg_heavy_block.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Heavy_Block/z_bg_heavy_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Heavy_Block/z_bg_heavy_block.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Dalm/z_bg_hidan_dalm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Dalm/z_bg_hidan_dalm.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Dalm/z_bg_hidan_dalm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Dalm/z_bg_hidan_dalm.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Fwbig/z_bg_hidan_fwbig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Fwbig/z_bg_hidan_fwbig.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Fwbig/z_bg_hidan_fwbig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Fwbig/z_bg_hidan_fwbig.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Hrock/z_bg_hidan_hrock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Hrock/z_bg_hidan_hrock.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Hrock/z_bg_hidan_hrock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Hrock/z_bg_hidan_hrock.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Kousi/z_bg_hidan_kousi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Kousi/z_bg_hidan_kousi.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Kousi/z_bg_hidan_kousi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Kousi/z_bg_hidan_kousi.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Rock/z_bg_hidan_rock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Rock/z_bg_hidan_rock.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Rock/z_bg_hidan_rock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Rock/z_bg_hidan_rock.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Sima/z_bg_hidan_sima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Sima/z_bg_hidan_sima.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Sima/z_bg_hidan_sima.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Sima/z_bg_hidan_sima.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Syoku/z_bg_hidan_syoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Syoku/z_bg_hidan_syoku.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Hidan_Syoku/z_bg_hidan_syoku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Hidan_Syoku/z_bg_hidan_syoku.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ice_Objects/z_bg_ice_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ice_Objects/z_bg_ice_objects.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ice_Objects/z_bg_ice_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ice_Objects/z_bg_ice_objects.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ice_Shelter/z_bg_ice_shelter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ice_Shelter/z_bg_ice_shelter.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ice_Shelter/z_bg_ice_shelter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ice_Shelter/z_bg_ice_shelter.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ice_Shutter/z_bg_ice_shutter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ice_Shutter/z_bg_ice_shutter.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ice_Shutter/z_bg_ice_shutter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ice_Shutter/z_bg_ice_shutter.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ice_Turara/z_bg_ice_turara.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ice_Turara/z_bg_ice_turara.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ice_Turara/z_bg_ice_turara.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ice_Turara/z_bg_ice_turara.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ingate/z_bg_ingate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ingate/z_bg_ingate.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ingate/z_bg_ingate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ingate/z_bg_ingate.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_1flift/z_bg_jya_1flift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_1flift/z_bg_jya_1flift.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_1flift/z_bg_jya_1flift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_1flift/z_bg_jya_1flift.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Block/z_bg_jya_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Block/z_bg_jya_block.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Block/z_bg_jya_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Block/z_bg_jya_block.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Bombiwa/z_bg_jya_bombiwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Bombiwa/z_bg_jya_bombiwa.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Bombiwa/z_bg_jya_bombiwa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Bombiwa/z_bg_jya_bombiwa.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Cobra/z_bg_jya_cobra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Cobra/z_bg_jya_cobra.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Cobra/z_bg_jya_cobra.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Cobra/z_bg_jya_cobra.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Goroiwa/z_bg_jya_goroiwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Goroiwa/z_bg_jya_goroiwa.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Goroiwa/z_bg_jya_goroiwa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Goroiwa/z_bg_jya_goroiwa.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Ironobj/z_bg_jya_ironobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Ironobj/z_bg_jya_ironobj.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Ironobj/z_bg_jya_ironobj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Ironobj/z_bg_jya_ironobj.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Kanaami/z_bg_jya_kanaami.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Kanaami/z_bg_jya_kanaami.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Kanaami/z_bg_jya_kanaami.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Kanaami/z_bg_jya_kanaami.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Lift/z_bg_jya_lift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Lift/z_bg_jya_lift.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Lift/z_bg_jya_lift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Lift/z_bg_jya_lift.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Megami/z_bg_jya_megami.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Megami/z_bg_jya_megami.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Jya_Megami/z_bg_jya_megami.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Jya_Megami/z_bg_jya_megami.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Menkuri_Eye/z_bg_menkuri_eye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Menkuri_Eye/z_bg_menkuri_eye.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Menkuri_Eye/z_bg_menkuri_eye.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Menkuri_Eye/z_bg_menkuri_eye.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mizu_Bwall/z_bg_mizu_bwall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mizu_Bwall/z_bg_mizu_bwall.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mizu_Bwall/z_bg_mizu_bwall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mizu_Bwall/z_bg_mizu_bwall.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mizu_Movebg/z_bg_mizu_movebg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mizu_Movebg/z_bg_mizu_movebg.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mizu_Movebg/z_bg_mizu_movebg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mizu_Movebg/z_bg_mizu_movebg.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mizu_Uzu/z_bg_mizu_uzu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mizu_Uzu/z_bg_mizu_uzu.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mizu_Uzu/z_bg_mizu_uzu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mizu_Uzu/z_bg_mizu_uzu.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mizu_Water/z_bg_mizu_water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mizu_Water/z_bg_mizu_water.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mizu_Water/z_bg_mizu_water.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mizu_Water/z_bg_mizu_water.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mjin/z_bg_mjin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mjin/z_bg_mjin.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mjin/z_bg_mjin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mjin/z_bg_mjin.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mori_Bigst/z_bg_mori_bigst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mori_Bigst/z_bg_mori_bigst.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mori_Bigst/z_bg_mori_bigst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mori_Bigst/z_bg_mori_bigst.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mori_Hineri/z_bg_mori_hineri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mori_Hineri/z_bg_mori_hineri.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Mori_Hineri/z_bg_mori_hineri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Mori_Hineri/z_bg_mori_hineri.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Po_Event/z_bg_po_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Po_Event/z_bg_po_event.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Po_Event/z_bg_po_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Po_Event/z_bg_po_event.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Po_Syokudai/z_bg_po_syokudai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Po_Syokudai/z_bg_po_syokudai.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Po_Syokudai/z_bg_po_syokudai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Po_Syokudai/z_bg_po_syokudai.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot03_Taki/z_bg_spot03_taki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot03_Taki/z_bg_spot03_taki.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot03_Taki/z_bg_spot03_taki.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot03_Taki/z_bg_spot03_taki.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot05_Soko/z_bg_spot05_soko.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot05_Soko/z_bg_spot05_soko.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot05_Soko/z_bg_spot05_soko.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot05_Soko/z_bg_spot05_soko.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot07_Taki/z_bg_spot07_taki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot07_Taki/z_bg_spot07_taki.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot07_Taki/z_bg_spot07_taki.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot07_Taki/z_bg_spot07_taki.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot09_Obj/z_bg_spot09_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot09_Obj/z_bg_spot09_obj.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot09_Obj/z_bg_spot09_obj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot09_Obj/z_bg_spot09_obj.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot12_Gate/z_bg_spot12_gate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot12_Gate/z_bg_spot12_gate.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot12_Gate/z_bg_spot12_gate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot12_Gate/z_bg_spot12_gate.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot12_Saku/z_bg_spot12_saku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot12_Saku/z_bg_spot12_saku.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot12_Saku/z_bg_spot12_saku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot12_Saku/z_bg_spot12_saku.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot15_Saku/z_bg_spot15_saku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot15_Saku/z_bg_spot15_saku.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot15_Saku/z_bg_spot15_saku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot15_Saku/z_bg_spot15_saku.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot18_Futa/z_bg_spot18_futa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot18_Futa/z_bg_spot18_futa.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot18_Futa/z_bg_spot18_futa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot18_Futa/z_bg_spot18_futa.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot18_Obj/z_bg_spot18_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot18_Obj/z_bg_spot18_obj.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Spot18_Obj/z_bg_spot18_obj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Spot18_Obj/z_bg_spot18_obj.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Sst_Floor/z_bg_sst_floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Sst_Floor/z_bg_sst_floor.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Sst_Floor/z_bg_sst_floor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Sst_Floor/z_bg_sst_floor.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Toki_Hikari/z_bg_toki_hikari.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Toki_Hikari/z_bg_toki_hikari.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Toki_Hikari/z_bg_toki_hikari.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Toki_Hikari/z_bg_toki_hikari.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Toki_Swd/z_bg_toki_swd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Toki_Swd/z_bg_toki_swd.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Toki_Swd/z_bg_toki_swd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Toki_Swd/z_bg_toki_swd.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Treemouth/z_bg_treemouth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Treemouth/z_bg_treemouth.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Treemouth/z_bg_treemouth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Treemouth/z_bg_treemouth.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Umajump/z_bg_umajump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Umajump/z_bg_umajump.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Umajump/z_bg_umajump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Umajump/z_bg_umajump.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Vb_Sima/z_bg_vb_sima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Vb_Sima/z_bg_vb_sima.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Vb_Sima/z_bg_vb_sima.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Vb_Sima/z_bg_vb_sima.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ydan_Hasi/z_bg_ydan_hasi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ydan_Hasi/z_bg_ydan_hasi.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ydan_Hasi/z_bg_ydan_hasi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ydan_Hasi/z_bg_ydan_hasi.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ydan_Maruta/z_bg_ydan_maruta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ydan_Maruta/z_bg_ydan_maruta.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ydan_Maruta/z_bg_ydan_maruta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ydan_Maruta/z_bg_ydan_maruta.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ydan_Sp/z_bg_ydan_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ydan_Sp/z_bg_ydan_sp.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Ydan_Sp/z_bg_ydan_sp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Ydan_Sp/z_bg_ydan_sp.hpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Zg/z_bg_zg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Zg/z_bg_zg.cpp -------------------------------------------------------------------------------- /src/game/actors/Bg_Zg/z_bg_zg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Bg_Zg/z_bg_zg.hpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Dodongo/z_boss_dodongo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Dodongo/z_boss_dodongo.cpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Dodongo/z_boss_dodongo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Dodongo/z_boss_dodongo.hpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Fd/z_boss_fd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Fd/z_boss_fd.cpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Fd/z_boss_fd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Fd/z_boss_fd.hpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Fd2/z_boss_fd2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Fd2/z_boss_fd2.cpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Fd2/z_boss_fd2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Fd2/z_boss_fd2.hpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Ganon/z_boss_ganon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Ganon/z_boss_ganon.cpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Ganon/z_boss_ganon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Ganon/z_boss_ganon.hpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Ganon2/z_boss_ganon2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Ganon2/z_boss_ganon2.cpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Ganon2/z_boss_ganon2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Ganon2/z_boss_ganon2.hpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Ganondrof/z_boss_ganondrof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Ganondrof/z_boss_ganondrof.cpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Ganondrof/z_boss_ganondrof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Ganondrof/z_boss_ganondrof.hpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Goma/z_boss_goma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Goma/z_boss_goma.cpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Goma/z_boss_goma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Goma/z_boss_goma.hpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Mo/z_boss_mo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Mo/z_boss_mo.cpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Mo/z_boss_mo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Mo/z_boss_mo.hpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Sst/z_boss_sst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Sst/z_boss_sst.cpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Sst/z_boss_sst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Sst/z_boss_sst.hpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Tw/z_boss_tw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Tw/z_boss_tw.cpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Tw/z_boss_tw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Tw/z_boss_tw.hpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Va/z_boss_va.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Va/z_boss_va.cpp -------------------------------------------------------------------------------- /src/game/actors/Boss_Va/z_boss_va.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Boss_Va/z_boss_va.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_6K/z_demo_6k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_6K/z_demo_6k.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_6K/z_demo_6k.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_6K/z_demo_6k.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Du/z_demo_du.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Du/z_demo_du.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Du/z_demo_du.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Du/z_demo_du.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Ec/z_demo_ec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Ec/z_demo_ec.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Ec/z_demo_ec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Ec/z_demo_ec.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Effect/z_demo_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Effect/z_demo_effect.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Effect/z_demo_effect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Effect/z_demo_effect.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Ext/z_demo_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Ext/z_demo_ext.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Ext/z_demo_ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Ext/z_demo_ext.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Geff/z_demo_geff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Geff/z_demo_geff.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Geff/z_demo_geff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Geff/z_demo_geff.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Gj/z_demo_gj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Gj/z_demo_gj.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Gj/z_demo_gj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Gj/z_demo_gj.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Go/z_demo_go.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Go/z_demo_go.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Go/z_demo_go.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Go/z_demo_go.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Gt/z_demo_gt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Gt/z_demo_gt.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Gt/z_demo_gt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Gt/z_demo_gt.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Ik/z_demo_ik.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Ik/z_demo_ik.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Ik/z_demo_ik.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Ik/z_demo_ik.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Im/z_demo_im.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Im/z_demo_im.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Im/z_demo_im.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Im/z_demo_im.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Kankyo/z_demo_kankyo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Kankyo/z_demo_kankyo.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Kankyo/z_demo_kankyo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Kankyo/z_demo_kankyo.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Kekkai/z_demo_kekkai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Kekkai/z_demo_kekkai.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Kekkai/z_demo_kekkai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Kekkai/z_demo_kekkai.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Sa/z_demo_sa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Sa/z_demo_sa.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Sa/z_demo_sa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Sa/z_demo_sa.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Shd/z_demo_shd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Shd/z_demo_shd.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Shd/z_demo_shd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Shd/z_demo_shd.hpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Tre_Lgt/z_demo_tre_lgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Tre_Lgt/z_demo_tre_lgt.cpp -------------------------------------------------------------------------------- /src/game/actors/Demo_Tre_Lgt/z_demo_tre_lgt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Demo_Tre_Lgt/z_demo_tre_lgt.hpp -------------------------------------------------------------------------------- /src/game/actors/Door_Ana/z_door_ana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Door_Ana/z_door_ana.cpp -------------------------------------------------------------------------------- /src/game/actors/Door_Ana/z_door_ana.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Door_Ana/z_door_ana.hpp -------------------------------------------------------------------------------- /src/game/actors/Door_Gerudo/z_door_gerudo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Door_Gerudo/z_door_gerudo.cpp -------------------------------------------------------------------------------- /src/game/actors/Door_Gerudo/z_door_gerudo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Door_Gerudo/z_door_gerudo.hpp -------------------------------------------------------------------------------- /src/game/actors/Door_Killer/z_door_killer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Door_Killer/z_door_killer.cpp -------------------------------------------------------------------------------- /src/game/actors/Door_Killer/z_door_killer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Door_Killer/z_door_killer.hpp -------------------------------------------------------------------------------- /src/game/actors/Door_Shutter/z_door_shutter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Door_Shutter/z_door_shutter.cpp -------------------------------------------------------------------------------- /src/game/actors/Door_Shutter/z_door_shutter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Door_Shutter/z_door_shutter.hpp -------------------------------------------------------------------------------- /src/game/actors/Door_Toki/z_door_toki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Door_Toki/z_door_toki.cpp -------------------------------------------------------------------------------- /src/game/actors/Door_Toki/z_door_toki.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Door_Toki/z_door_toki.hpp -------------------------------------------------------------------------------- /src/game/actors/Door_Warp1/z_door_warp1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Door_Warp1/z_door_warp1.cpp -------------------------------------------------------------------------------- /src/game/actors/Door_Warp1/z_door_warp1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Door_Warp1/z_door_warp1.hpp -------------------------------------------------------------------------------- /src/game/actors/Efc_Erupc/z_efc_erupc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Efc_Erupc/z_efc_erupc.cpp -------------------------------------------------------------------------------- /src/game/actors/Efc_Erupc/z_efc_erupc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Efc_Erupc/z_efc_erupc.hpp -------------------------------------------------------------------------------- /src/game/actors/Eff_Dust/z_eff_dust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Eff_Dust/z_eff_dust.cpp -------------------------------------------------------------------------------- /src/game/actors/Eff_Dust/z_eff_dust.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Eff_Dust/z_eff_dust.hpp -------------------------------------------------------------------------------- /src/game/actors/Elf_Msg/z_elf_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Elf_Msg/z_elf_msg.cpp -------------------------------------------------------------------------------- /src/game/actors/Elf_Msg/z_elf_msg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Elf_Msg/z_elf_msg.hpp -------------------------------------------------------------------------------- /src/game/actors/Elf_Msg2/z_elf_msg2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Elf_Msg2/z_elf_msg2.cpp -------------------------------------------------------------------------------- /src/game/actors/Elf_Msg2/z_elf_msg2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Elf_Msg2/z_elf_msg2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_A_Obj/z_en_a_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_A_Obj/z_en_a_obj.cpp -------------------------------------------------------------------------------- /src/game/actors/En_A_Obj/z_en_a_obj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_A_Obj/z_en_a_obj.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Am/z_en_am.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Am/z_en_am.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Am/z_en_am.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Am/z_en_am.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ani/z_en_ani.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ani/z_en_ani.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ani/z_en_ani.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ani/z_en_ani.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Anubice/z_en_anubice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Anubice/z_en_anubice.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Anubice/z_en_anubice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Anubice/z_en_anubice.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Anubice_Tag/z_en_anubice_tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Anubice_Tag/z_en_anubice_tag.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Arow_Trap/z_en_arow_trap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Arow_Trap/z_en_arow_trap.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Arow_Trap/z_en_arow_trap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Arow_Trap/z_en_arow_trap.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Arrow/z_en_arrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Arrow/z_en_arrow.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Arrow/z_en_arrow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Arrow/z_en_arrow.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Attack_Niw/z_en_attack_niw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Attack_Niw/z_en_attack_niw.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Attack_Niw/z_en_attack_niw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Attack_Niw/z_en_attack_niw.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ba/z_en_ba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ba/z_en_ba.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ba/z_en_ba.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ba/z_en_ba.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Bb/z_en_bb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bb/z_en_bb.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Bb/z_en_bb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bb/z_en_bb.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Bdfire/z_en_bdfire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bdfire/z_en_bdfire.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Bdfire/z_en_bdfire.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bdfire/z_en_bdfire.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Bigokuta/z_en_bigokuta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bigokuta/z_en_bigokuta.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Bigokuta/z_en_bigokuta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bigokuta/z_en_bigokuta.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Bili/z_en_bili.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bili/z_en_bili.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Bili/z_en_bili.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bili/z_en_bili.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Bird/z_en_bird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bird/z_en_bird.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Bird/z_en_bird.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bird/z_en_bird.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Blkobj/z_en_blkobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Blkobj/z_en_blkobj.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Blkobj/z_en_blkobj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Blkobj/z_en_blkobj.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Bom/z_en_bom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bom/z_en_bom.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Bom/z_en_bom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bom/z_en_bom.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Bom_Chu/z_en_bom_chu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bom_Chu/z_en_bom_chu.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Bom_Chu/z_en_bom_chu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bom_Chu/z_en_bom_chu.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Bombf/z_en_bombf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bombf/z_en_bombf.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Bombf/z_en_bombf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bombf/z_en_bombf.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Boom/z_en_boom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Boom/z_en_boom.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Boom/z_en_boom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Boom/z_en_boom.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Box/z_en_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Box/z_en_box.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Box/z_en_box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Box/z_en_box.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Brob/z_en_brob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Brob/z_en_brob.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Brob/z_en_brob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Brob/z_en_brob.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Bubble/z_en_bubble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bubble/z_en_bubble.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Bubble/z_en_bubble.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bubble/z_en_bubble.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Butte/z_en_butte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Butte/z_en_butte.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Butte/z_en_butte.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Butte/z_en_butte.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Bw/z_en_bw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bw/z_en_bw.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Bw/z_en_bw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bw/z_en_bw.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Bx/z_en_bx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bx/z_en_bx.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Bx/z_en_bx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Bx/z_en_bx.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Changer/z_en_changer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Changer/z_en_changer.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Changer/z_en_changer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Changer/z_en_changer.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Clear_Tag/z_en_clear_tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Clear_Tag/z_en_clear_tag.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Clear_Tag/z_en_clear_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Clear_Tag/z_en_clear_tag.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Cow/z_en_cow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Cow/z_en_cow.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Cow/z_en_cow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Cow/z_en_cow.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Crow/z_en_crow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Crow/z_en_crow.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Crow/z_en_crow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Crow/z_en_crow.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Cs/z_en_cs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Cs/z_en_cs.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Cs/z_en_cs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Cs/z_en_cs.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Daiku/z_en_daiku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Daiku/z_en_daiku.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Daiku/z_en_daiku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Daiku/z_en_daiku.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Dekubaba/z_en_dekubaba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dekubaba/z_en_dekubaba.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Dekubaba/z_en_dekubaba.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dekubaba/z_en_dekubaba.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Dekunuts/z_en_dekunuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dekunuts/z_en_dekunuts.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Dekunuts/z_en_dekunuts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dekunuts/z_en_dekunuts.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Dh/z_en_dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dh/z_en_dh.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Dh/z_en_dh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dh/z_en_dh.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Dha/z_en_dha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dha/z_en_dha.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Dha/z_en_dha.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dha/z_en_dha.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Dns/z_en_dns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dns/z_en_dns.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Dns/z_en_dns.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dns/z_en_dns.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Dnt_Demo/z_en_dnt_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dnt_Demo/z_en_dnt_demo.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Dnt_Demo/z_en_dnt_demo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dnt_Demo/z_en_dnt_demo.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Dnt_Jiji/z_en_dnt_jiji.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dnt_Jiji/z_en_dnt_jiji.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Dnt_Jiji/z_en_dnt_jiji.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dnt_Jiji/z_en_dnt_jiji.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Dnt_Nomal/z_en_dnt_nomal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dnt_Nomal/z_en_dnt_nomal.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Dnt_Nomal/z_en_dnt_nomal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dnt_Nomal/z_en_dnt_nomal.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Dodojr/z_en_dodojr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dodojr/z_en_dodojr.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Dodojr/z_en_dodojr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dodojr/z_en_dodojr.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Dodongo/z_en_dodongo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dodongo/z_en_dodongo.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Dodongo/z_en_dodongo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dodongo/z_en_dodongo.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Dog/z_en_dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dog/z_en_dog.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Dog/z_en_dog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dog/z_en_dog.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Door/z_en_door.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Door/z_en_door.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Door/z_en_door.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Door/z_en_door.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ds/z_en_ds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ds/z_en_ds.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ds/z_en_ds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ds/z_en_ds.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Du/z_en_du.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Du/z_en_du.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Du/z_en_du.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Du/z_en_du.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Dy_Extra/z_en_dy_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dy_Extra/z_en_dy_extra.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Dy_Extra/z_en_dy_extra.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Dy_Extra/z_en_dy_extra.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Eg/z_en_eg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Eg/z_en_eg.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Eg/z_en_eg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Eg/z_en_eg.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Eiyer/z_en_eiyer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Eiyer/z_en_eiyer.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Eiyer/z_en_eiyer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Eiyer/z_en_eiyer.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Elf/z_en_elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Elf/z_en_elf.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Elf/z_en_elf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Elf/z_en_elf.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Encount1/z_en_encount1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Encount1/z_en_encount1.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Encount1/z_en_encount1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Encount1/z_en_encount1.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Encount2/z_en_encount2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Encount2/z_en_encount2.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Encount2/z_en_encount2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Encount2/z_en_encount2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ex_Item/z_en_ex_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ex_Item/z_en_ex_item.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ex_Item/z_en_ex_item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ex_Item/z_en_ex_item.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ex_Ruppy/z_en_ex_ruppy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ex_Ruppy/z_en_ex_ruppy.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ex_Ruppy/z_en_ex_ruppy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ex_Ruppy/z_en_ex_ruppy.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Fd/z_en_fd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fd/z_en_fd.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Fd/z_en_fd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fd/z_en_fd.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Fd_Fire/z_en_fd_fire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fd_Fire/z_en_fd_fire.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Fd_Fire/z_en_fd_fire.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fd_Fire/z_en_fd_fire.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Fhg_Fire/z_en_fhg_fire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fhg_Fire/z_en_fhg_fire.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Fhg_Fire/z_en_fhg_fire.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fhg_Fire/z_en_fhg_fire.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Fire_Rock/z_en_fire_rock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fire_Rock/z_en_fire_rock.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Fire_Rock/z_en_fire_rock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fire_Rock/z_en_fire_rock.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Firefly/z_en_firefly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Firefly/z_en_firefly.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Firefly/z_en_firefly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Firefly/z_en_firefly.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Fish/z_en_fish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fish/z_en_fish.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Fish/z_en_fish.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fish/z_en_fish.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Floormas/z_en_floormas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Floormas/z_en_floormas.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Floormas/z_en_floormas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Floormas/z_en_floormas.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Fr/z_en_fr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fr/z_en_fr.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Fr/z_en_fr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fr/z_en_fr.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Fu/z_en_fu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fu/z_en_fu.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Fu/z_en_fu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fu/z_en_fu.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Fw/z_en_fw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fw/z_en_fw.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Fw/z_en_fw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fw/z_en_fw.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Fz/z_en_fz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fz/z_en_fz.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Fz/z_en_fz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Fz/z_en_fz.hpp -------------------------------------------------------------------------------- /src/game/actors/En_G_Switch/z_en_g_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_G_Switch/z_en_g_switch.cpp -------------------------------------------------------------------------------- /src/game/actors/En_G_Switch/z_en_g_switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_G_Switch/z_en_g_switch.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ganon_Mant/z_en_ganon_mant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ganon_Mant/z_en_ganon_mant.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ganon_Mant/z_en_ganon_mant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ganon_Mant/z_en_ganon_mant.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Gb/z_en_gb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Gb/z_en_gb.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Gb/z_en_gb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Gb/z_en_gb.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ge1/z_en_ge1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ge1/z_en_ge1.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ge1/z_en_ge1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ge1/z_en_ge1.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ge2/z_en_ge2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ge2/z_en_ge2.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ge2/z_en_ge2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ge2/z_en_ge2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ge3/z_en_ge3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ge3/z_en_ge3.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ge3/z_en_ge3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ge3/z_en_ge3.hpp -------------------------------------------------------------------------------- /src/game/actors/En_GeldB/z_en_geldb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_GeldB/z_en_geldb.cpp -------------------------------------------------------------------------------- /src/game/actors/En_GeldB/z_en_geldb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_GeldB/z_en_geldb.hpp -------------------------------------------------------------------------------- /src/game/actors/En_GirlA/z_en_girla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_GirlA/z_en_girla.cpp -------------------------------------------------------------------------------- /src/game/actors/En_GirlA/z_en_girla.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_GirlA/z_en_girla.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Gm/z_en_gm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Gm/z_en_gm.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Gm/z_en_gm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Gm/z_en_gm.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Go2/z_en_go2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Go2/z_en_go2.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Go2/z_en_go2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Go2/z_en_go2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Goma/z_en_goma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Goma/z_en_goma.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Goma/z_en_goma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Goma/z_en_goma.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Goroiwa/z_en_goroiwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Goroiwa/z_en_goroiwa.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Goroiwa/z_en_goroiwa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Goroiwa/z_en_goroiwa.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Gs/z_en_gs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Gs/z_en_gs.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Gs/z_en_gs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Gs/z_en_gs.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Guest/z_en_guest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Guest/z_en_guest.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Guest/z_en_guest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Guest/z_en_guest.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Hata/z_en_hata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Hata/z_en_hata.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Hata/z_en_hata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Hata/z_en_hata.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Heishi1/z_en_heishi1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Heishi1/z_en_heishi1.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Heishi1/z_en_heishi1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Heishi1/z_en_heishi1.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Heishi2/z_en_heishi2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Heishi2/z_en_heishi2.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Heishi2/z_en_heishi2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Heishi2/z_en_heishi2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Heishi3/z_en_heishi3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Heishi3/z_en_heishi3.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Heishi3/z_en_heishi3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Heishi3/z_en_heishi3.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Heishi4/z_en_heishi4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Heishi4/z_en_heishi4.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Heishi4/z_en_heishi4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Heishi4/z_en_heishi4.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Hintnuts/z_en_hintnuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Hintnuts/z_en_hintnuts.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Hintnuts/z_en_hintnuts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Hintnuts/z_en_hintnuts.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Holl/z_en_holl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Holl/z_en_holl.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Holl/z_en_holl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Holl/z_en_holl.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Honotrap/z_en_honotrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Honotrap/z_en_honotrap.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Honotrap/z_en_honotrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Honotrap/z_en_honotrap.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Horse/z_en_horse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Horse/z_en_horse.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Horse/z_en_horse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Horse/z_en_horse.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Hs/z_en_hs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Hs/z_en_hs.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Hs/z_en_hs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Hs/z_en_hs.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Hs2/z_en_hs2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Hs2/z_en_hs2.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Hs2/z_en_hs2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Hs2/z_en_hs2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Hy/z_en_hy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Hy/z_en_hy.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Hy/z_en_hy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Hy/z_en_hy.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ice_Hono/z_en_ice_hono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ice_Hono/z_en_ice_hono.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ice_Hono/z_en_ice_hono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ice_Hono/z_en_ice_hono.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ik/z_en_ik.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ik/z_en_ik.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ik/z_en_ik.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ik/z_en_ik.hpp -------------------------------------------------------------------------------- /src/game/actors/En_In/z_en_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_In/z_en_in.cpp -------------------------------------------------------------------------------- /src/game/actors/En_In/z_en_in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_In/z_en_in.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Insect/z_en_insect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Insect/z_en_insect.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Insect/z_en_insect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Insect/z_en_insect.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ishi/z_en_ishi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ishi/z_en_ishi.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ishi/z_en_ishi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ishi/z_en_ishi.hpp -------------------------------------------------------------------------------- /src/game/actors/En_It/z_en_it.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_It/z_en_it.cpp -------------------------------------------------------------------------------- /src/game/actors/En_It/z_en_it.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_It/z_en_it.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Item00/z_en_item00.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Item00/z_en_item00.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Item00/z_en_item00.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Item00/z_en_item00.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Jj/z_en_jj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Jj/z_en_jj.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Jj/z_en_jj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Jj/z_en_jj.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Js/z_en_js.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Js/z_en_js.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Js/z_en_js.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Js/z_en_js.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Jsjutan/z_en_jsjutan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Jsjutan/z_en_jsjutan.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Jsjutan/z_en_jsjutan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Jsjutan/z_en_jsjutan.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Kakasi/z_en_kakasi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Kakasi/z_en_kakasi.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Kakasi/z_en_kakasi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Kakasi/z_en_kakasi.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Kakasi2/z_en_kakasi2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Kakasi2/z_en_kakasi2.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Kakasi2/z_en_kakasi2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Kakasi2/z_en_kakasi2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Kakasi3/z_en_kakasi3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Kakasi3/z_en_kakasi3.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Kakasi3/z_en_kakasi3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Kakasi3/z_en_kakasi3.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Kanban/z_en_kanban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Kanban/z_en_kanban.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Kanban/z_en_kanban.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Kanban/z_en_kanban.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Karebaba/z_en_karebaba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Karebaba/z_en_karebaba.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Karebaba/z_en_karebaba.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Karebaba/z_en_karebaba.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ko/z_en_ko.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ko/z_en_ko.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ko/z_en_ko.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ko/z_en_ko.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Kusa/z_en_kusa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Kusa/z_en_kusa.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Kusa/z_en_kusa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Kusa/z_en_kusa.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Kz/z_en_kz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Kz/z_en_kz.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Kz/z_en_kz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Kz/z_en_kz.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Light/z_en_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Light/z_en_light.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Light/z_en_light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Light/z_en_light.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Lightbox/z_en_lightbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Lightbox/z_en_lightbox.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Lightbox/z_en_lightbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Lightbox/z_en_lightbox.hpp -------------------------------------------------------------------------------- /src/game/actors/En_M_Fire1/z_en_m_fire1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_M_Fire1/z_en_m_fire1.cpp -------------------------------------------------------------------------------- /src/game/actors/En_M_Fire1/z_en_m_fire1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_M_Fire1/z_en_m_fire1.hpp -------------------------------------------------------------------------------- /src/game/actors/En_M_Thunder/z_en_m_thunder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_M_Thunder/z_en_m_thunder.cpp -------------------------------------------------------------------------------- /src/game/actors/En_M_Thunder/z_en_m_thunder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_M_Thunder/z_en_m_thunder.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ma1/z_en_ma1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ma1/z_en_ma1.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ma1/z_en_ma1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ma1/z_en_ma1.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ma2/z_en_ma2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ma2/z_en_ma2.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ma2/z_en_ma2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ma2/z_en_ma2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ma3/z_en_ma3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ma3/z_en_ma3.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ma3/z_en_ma3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ma3/z_en_ma3.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Mag/z_en_mag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Mag/z_en_mag.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Mag/z_en_mag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Mag/z_en_mag.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Mb/z_en_mb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Mb/z_en_mb.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Mb/z_en_mb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Mb/z_en_mb.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Md/z_en_md.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Md/z_en_md.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Md/z_en_md.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Md/z_en_md.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Mk/z_en_mk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Mk/z_en_mk.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Mk/z_en_mk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Mk/z_en_mk.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Mm/z_en_mm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Mm/z_en_mm.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Mm/z_en_mm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Mm/z_en_mm.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Mm2/z_en_mm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Mm2/z_en_mm2.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Mm2/z_en_mm2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Mm2/z_en_mm2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ms/z_en_ms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ms/z_en_ms.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ms/z_en_ms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ms/z_en_ms.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Mu/z_en_mu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Mu/z_en_mu.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Mu/z_en_mu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Mu/z_en_mu.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Nb/z_en_nb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Nb/z_en_nb.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Nb/z_en_nb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Nb/z_en_nb.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Niw/z_en_niw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Niw/z_en_niw.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Niw/z_en_niw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Niw/z_en_niw.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Niw_Girl/z_en_niw_girl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Niw_Girl/z_en_niw_girl.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Niw_Girl/z_en_niw_girl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Niw_Girl/z_en_niw_girl.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Niw_Lady/z_en_niw_lady.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Niw_Lady/z_en_niw_lady.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Niw_Lady/z_en_niw_lady.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Niw_Lady/z_en_niw_lady.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Nutsball/z_en_nutsball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Nutsball/z_en_nutsball.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Nutsball/z_en_nutsball.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Nutsball/z_en_nutsball.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Nwc/z_en_nwc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Nwc/z_en_nwc.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Nwc/z_en_nwc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Nwc/z_en_nwc.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ny/z_en_ny.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ny/z_en_ny.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ny/z_en_ny.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ny/z_en_ny.hpp -------------------------------------------------------------------------------- /src/game/actors/En_OE2/z_en_oe2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_OE2/z_en_oe2.cpp -------------------------------------------------------------------------------- /src/game/actors/En_OE2/z_en_oe2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_OE2/z_en_oe2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Okuta/z_en_okuta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Okuta/z_en_okuta.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Okuta/z_en_okuta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Okuta/z_en_okuta.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ossan/z_en_ossan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ossan/z_en_ossan.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ossan/z_en_ossan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ossan/z_en_ossan.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Owl/z_en_owl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Owl/z_en_owl.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Owl/z_en_owl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Owl/z_en_owl.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Part/z_en_part.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Part/z_en_part.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Part/z_en_part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Part/z_en_part.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Peehat/z_en_peehat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Peehat/z_en_peehat.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Peehat/z_en_peehat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Peehat/z_en_peehat.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Po_Desert/z_en_po_desert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Po_Desert/z_en_po_desert.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Po_Desert/z_en_po_desert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Po_Desert/z_en_po_desert.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Po_Field/z_en_po_field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Po_Field/z_en_po_field.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Po_Field/z_en_po_field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Po_Field/z_en_po_field.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Po_Relay/z_en_po_relay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Po_Relay/z_en_po_relay.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Po_Relay/z_en_po_relay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Po_Relay/z_en_po_relay.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Po_Sisters/z_en_po_sisters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Po_Sisters/z_en_po_sisters.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Po_Sisters/z_en_po_sisters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Po_Sisters/z_en_po_sisters.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Poh/z_en_poh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Poh/z_en_poh.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Poh/z_en_poh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Poh/z_en_poh.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Pu_box/z_en_pu_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Pu_box/z_en_pu_box.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Pu_box/z_en_pu_box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Pu_box/z_en_pu_box.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Rd/z_en_rd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Rd/z_en_rd.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Rd/z_en_rd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Rd/z_en_rd.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Reeba/z_en_reeba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Reeba/z_en_reeba.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Reeba/z_en_reeba.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Reeba/z_en_reeba.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Rl/z_en_rl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Rl/z_en_rl.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Rl/z_en_rl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Rl/z_en_rl.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Rr/z_en_rr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Rr/z_en_rr.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Rr/z_en_rr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Rr/z_en_rr.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ru1/z_en_ru1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ru1/z_en_ru1.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ru1/z_en_ru1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ru1/z_en_ru1.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ru2/z_en_ru2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ru2/z_en_ru2.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ru2/z_en_ru2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ru2/z_en_ru2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Sa/z_en_sa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Sa/z_en_sa.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Sa/z_en_sa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Sa/z_en_sa.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Sb/z_en_sb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Sb/z_en_sb.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Sb/z_en_sb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Sb/z_en_sb.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Sda/z_en_sda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Sda/z_en_sda.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Sda/z_en_sda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Sda/z_en_sda.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Shopnuts/z_en_shopnuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Shopnuts/z_en_shopnuts.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Shopnuts/z_en_shopnuts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Shopnuts/z_en_shopnuts.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Si/z_en_si.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Si/z_en_si.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Si/z_en_si.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Si/z_en_si.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Siofuki/z_en_siofuki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Siofuki/z_en_siofuki.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Siofuki/z_en_siofuki.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Siofuki/z_en_siofuki.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Skb/z_en_skb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Skb/z_en_skb.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Skb/z_en_skb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Skb/z_en_skb.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Skj/z_en_skj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Skj/z_en_skj.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Skj/z_en_skj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Skj/z_en_skj.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Skjneedle/z_en_skjneedle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Skjneedle/z_en_skjneedle.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Skjneedle/z_en_skjneedle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Skjneedle/z_en_skjneedle.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ssh/z_en_ssh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ssh/z_en_ssh.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ssh/z_en_ssh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ssh/z_en_ssh.hpp -------------------------------------------------------------------------------- /src/game/actors/En_St/z_en_st.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_St/z_en_st.cpp -------------------------------------------------------------------------------- /src/game/actors/En_St/z_en_st.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_St/z_en_st.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Sth/z_en_sth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Sth/z_en_sth.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Sth/z_en_sth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Sth/z_en_sth.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Stream/z_en_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Stream/z_en_stream.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Stream/z_en_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Stream/z_en_stream.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Sw/z_en_sw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Sw/z_en_sw.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Sw/z_en_sw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Sw/z_en_sw.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Ta/z_en_ta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ta/z_en_ta.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Ta/z_en_ta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Ta/z_en_ta.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Takara_Man/z_en_takara_man.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Takara_Man/z_en_takara_man.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Takara_Man/z_en_takara_man.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Takara_Man/z_en_takara_man.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Tana/z_en_tana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tana/z_en_tana.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Tana/z_en_tana.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tana/z_en_tana.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Test/z_en_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Test/z_en_test.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Test/z_en_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Test/z_en_test.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Tg/z_en_tg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tg/z_en_tg.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Tg/z_en_tg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tg/z_en_tg.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Tite/z_en_tite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tite/z_en_tite.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Tite/z_en_tite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tite/z_en_tite.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Tk/z_en_tk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tk/z_en_tk.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Tk/z_en_tk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tk/z_en_tk.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Torch/z_en_torch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Torch/z_en_torch.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Torch/z_en_torch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Torch/z_en_torch.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Torch2/z_en_torch2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Torch2/z_en_torch2.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Torch2/z_en_torch2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Torch2/z_en_torch2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Toryo/z_en_toryo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Toryo/z_en_toryo.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Toryo/z_en_toryo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Toryo/z_en_toryo.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Tp/z_en_tp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tp/z_en_tp.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Tp/z_en_tp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tp/z_en_tp.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Tr/z_en_tr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tr/z_en_tr.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Tr/z_en_tr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tr/z_en_tr.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Trap/z_en_trap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Trap/z_en_trap.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Trap/z_en_trap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Trap/z_en_trap.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Tubo_Trap/z_en_tubo_trap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tubo_Trap/z_en_tubo_trap.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Tubo_Trap/z_en_tubo_trap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Tubo_Trap/z_en_tubo_trap.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Vali/z_en_vali.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Vali/z_en_vali.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Vali/z_en_vali.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Vali/z_en_vali.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Vase/z_en_vase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Vase/z_en_vase.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Vase/z_en_vase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Vase/z_en_vase.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Vb_Ball/z_en_vb_ball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Vb_Ball/z_en_vb_ball.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Vb_Ball/z_en_vb_ball.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Vb_Ball/z_en_vb_ball.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Viewer/z_en_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Viewer/z_en_viewer.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Viewer/z_en_viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Viewer/z_en_viewer.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Vm/z_en_vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Vm/z_en_vm.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Vm/z_en_vm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Vm/z_en_vm.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Wall_Tubo/z_en_wall_tubo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Wall_Tubo/z_en_wall_tubo.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Wall_Tubo/z_en_wall_tubo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Wall_Tubo/z_en_wall_tubo.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Wallmas/z_en_wallmas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Wallmas/z_en_wallmas.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Wallmas/z_en_wallmas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Wallmas/z_en_wallmas.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Weiyer/z_en_weiyer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Weiyer/z_en_weiyer.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Weiyer/z_en_weiyer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Weiyer/z_en_weiyer.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Wf/z_en_wf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Wf/z_en_wf.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Wf/z_en_wf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Wf/z_en_wf.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Wood02/z_en_wood02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Wood02/z_en_wood02.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Wood02/z_en_wood02.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Wood02/z_en_wood02.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Xc/z_en_xc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Xc/z_en_xc.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Xc/z_en_xc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Xc/z_en_xc.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Yukabyun/z_en_yukabyun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Yukabyun/z_en_yukabyun.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Yukabyun/z_en_yukabyun.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Yukabyun/z_en_yukabyun.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Zf/z_en_zf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Zf/z_en_zf.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Zf/z_en_zf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Zf/z_en_zf.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Zl1/z_en_zl1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Zl1/z_en_zl1.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Zl1/z_en_zl1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Zl1/z_en_zl1.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Zl2/z_en_zl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Zl2/z_en_zl2.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Zl2/z_en_zl2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Zl2/z_en_zl2.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Zl3/z_en_zl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Zl3/z_en_zl3.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Zl3/z_en_zl3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Zl3/z_en_zl3.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Zl4/z_en_zl4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Zl4/z_en_zl4.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Zl4/z_en_zl4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Zl4/z_en_zl4.hpp -------------------------------------------------------------------------------- /src/game/actors/En_Zo/z_en_zo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Zo/z_en_zo.cpp -------------------------------------------------------------------------------- /src/game/actors/En_Zo/z_en_zo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_Zo/z_en_zo.hpp -------------------------------------------------------------------------------- /src/game/actors/En_fHG/z_en_fhg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_fHG/z_en_fhg.cpp -------------------------------------------------------------------------------- /src/game/actors/En_fHG/z_en_fhg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/En_fHG/z_en_fhg.hpp -------------------------------------------------------------------------------- /src/game/actors/End_Title/z_end_title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/End_Title/z_end_title.cpp -------------------------------------------------------------------------------- /src/game/actors/End_Title/z_end_title.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/End_Title/z_end_title.hpp -------------------------------------------------------------------------------- /src/game/actors/Fishing/z_fishing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Fishing/z_fishing.cpp -------------------------------------------------------------------------------- /src/game/actors/Fishing/z_fishing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Fishing/z_fishing.hpp -------------------------------------------------------------------------------- /src/game/actors/Item_B_Heart/z_item_b_heart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Item_B_Heart/z_item_b_heart.cpp -------------------------------------------------------------------------------- /src/game/actors/Item_B_Heart/z_item_b_heart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Item_B_Heart/z_item_b_heart.hpp -------------------------------------------------------------------------------- /src/game/actors/Item_Etcetera/z_item_etcetera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Item_Etcetera/z_item_etcetera.cpp -------------------------------------------------------------------------------- /src/game/actors/Item_Etcetera/z_item_etcetera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Item_Etcetera/z_item_etcetera.hpp -------------------------------------------------------------------------------- /src/game/actors/Item_Inbox/z_item_inbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Item_Inbox/z_item_inbox.cpp -------------------------------------------------------------------------------- /src/game/actors/Item_Inbox/z_item_inbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Item_Inbox/z_item_inbox.hpp -------------------------------------------------------------------------------- /src/game/actors/Item_Ocarina/z_item_ocarina.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Item_Ocarina/z_item_ocarina.cpp -------------------------------------------------------------------------------- /src/game/actors/Item_Ocarina/z_item_ocarina.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Item_Ocarina/z_item_ocarina.hpp -------------------------------------------------------------------------------- /src/game/actors/Item_Shield/z_item_shield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Item_Shield/z_item_shield.cpp -------------------------------------------------------------------------------- /src/game/actors/Item_Shield/z_item_shield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Item_Shield/z_item_shield.hpp -------------------------------------------------------------------------------- /src/game/actors/Magic_Dark/z_magic_dark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Magic_Dark/z_magic_dark.cpp -------------------------------------------------------------------------------- /src/game/actors/Magic_Dark/z_magic_dark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Magic_Dark/z_magic_dark.hpp -------------------------------------------------------------------------------- /src/game/actors/Magic_Fire/z_magic_fire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Magic_Fire/z_magic_fire.cpp -------------------------------------------------------------------------------- /src/game/actors/Magic_Fire/z_magic_fire.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Magic_Fire/z_magic_fire.hpp -------------------------------------------------------------------------------- /src/game/actors/Magic_Wind/z_magic_wind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Magic_Wind/z_magic_wind.cpp -------------------------------------------------------------------------------- /src/game/actors/Magic_Wind/z_magic_wind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Magic_Wind/z_magic_wind.hpp -------------------------------------------------------------------------------- /src/game/actors/Mir_Ray/z_mir_ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Mir_Ray/z_mir_ray.cpp -------------------------------------------------------------------------------- /src/game/actors/Mir_Ray/z_mir_ray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Mir_Ray/z_mir_ray.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Bean/z_obj_bean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Bean/z_obj_bean.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Bean/z_obj_bean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Bean/z_obj_bean.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Blockstop/z_obj_blockstop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Blockstop/z_obj_blockstop.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Blockstop/z_obj_blockstop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Blockstop/z_obj_blockstop.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Bombiwa/z_obj_bombiwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Bombiwa/z_obj_bombiwa.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Bombiwa/z_obj_bombiwa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Bombiwa/z_obj_bombiwa.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Comb/z_obj_comb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Comb/z_obj_comb.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Comb/z_obj_comb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Comb/z_obj_comb.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Dekujr/z_obj_dekujr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Dekujr/z_obj_dekujr.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Dekujr/z_obj_dekujr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Dekujr/z_obj_dekujr.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Elevator/z_obj_elevator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Elevator/z_obj_elevator.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Elevator/z_obj_elevator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Elevator/z_obj_elevator.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Hamishi/z_obj_hamishi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Hamishi/z_obj_hamishi.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Hamishi/z_obj_hamishi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Hamishi/z_obj_hamishi.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Hana/z_obj_hana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Hana/z_obj_hana.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Hana/z_obj_hana.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Hana/z_obj_hana.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Hsblock/z_obj_hsblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Hsblock/z_obj_hsblock.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Hsblock/z_obj_hsblock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Hsblock/z_obj_hsblock.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Ice_Poly/z_obj_ice_poly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Ice_Poly/z_obj_ice_poly.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Ice_Poly/z_obj_ice_poly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Ice_Poly/z_obj_ice_poly.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Kibako/z_obj_kibako.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Kibako/z_obj_kibako.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Kibako/z_obj_kibako.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Kibako/z_obj_kibako.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Kibako2/z_obj_kibako2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Kibako2/z_obj_kibako2.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Kibako2/z_obj_kibako2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Kibako2/z_obj_kibako2.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Lift/z_obj_lift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Lift/z_obj_lift.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Lift/z_obj_lift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Lift/z_obj_lift.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Mure/z_obj_mure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Mure/z_obj_mure.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Mure/z_obj_mure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Mure/z_obj_mure.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Mure2/z_obj_mure2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Mure2/z_obj_mure2.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Mure2/z_obj_mure2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Mure2/z_obj_mure2.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Mure3/z_obj_mure3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Mure3/z_obj_mure3.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Mure3/z_obj_mure3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Mure3/z_obj_mure3.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Oshihiki/z_obj_oshihiki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Oshihiki/z_obj_oshihiki.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Oshihiki/z_obj_oshihiki.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Oshihiki/z_obj_oshihiki.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Roomtimer/z_obj_roomtimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Roomtimer/z_obj_roomtimer.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Roomtimer/z_obj_roomtimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Roomtimer/z_obj_roomtimer.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Switch/z_obj_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Switch/z_obj_switch.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Switch/z_obj_switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Switch/z_obj_switch.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Syokudai/z_obj_syokudai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Syokudai/z_obj_syokudai.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Syokudai/z_obj_syokudai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Syokudai/z_obj_syokudai.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Timeblock/z_obj_timeblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Timeblock/z_obj_timeblock.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Timeblock/z_obj_timeblock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Timeblock/z_obj_timeblock.hpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Tsubo/z_obj_tsubo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Tsubo/z_obj_tsubo.cpp -------------------------------------------------------------------------------- /src/game/actors/Obj_Tsubo/z_obj_tsubo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Obj_Tsubo/z_obj_tsubo.hpp -------------------------------------------------------------------------------- /src/game/actors/Object_Kankyo/z_object_kankyo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Object_Kankyo/z_object_kankyo.cpp -------------------------------------------------------------------------------- /src/game/actors/Object_Kankyo/z_object_kankyo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Object_Kankyo/z_object_kankyo.hpp -------------------------------------------------------------------------------- /src/game/actors/Oceff_Spot/z_oceff_spot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Oceff_Spot/z_oceff_spot.cpp -------------------------------------------------------------------------------- /src/game/actors/Oceff_Spot/z_oceff_spot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Oceff_Spot/z_oceff_spot.hpp -------------------------------------------------------------------------------- /src/game/actors/Oceff_Storm/z_oceff_storm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Oceff_Storm/z_oceff_storm.cpp -------------------------------------------------------------------------------- /src/game/actors/Oceff_Storm/z_oceff_storm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Oceff_Storm/z_oceff_storm.hpp -------------------------------------------------------------------------------- /src/game/actors/Oceff_Wipe/z_oceff_wipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Oceff_Wipe/z_oceff_wipe.cpp -------------------------------------------------------------------------------- /src/game/actors/Oceff_Wipe/z_oceff_wipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Oceff_Wipe/z_oceff_wipe.hpp -------------------------------------------------------------------------------- /src/game/actors/Oceff_Wipe2/z_oceff_wipe2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Oceff_Wipe2/z_oceff_wipe2.cpp -------------------------------------------------------------------------------- /src/game/actors/Oceff_Wipe2/z_oceff_wipe2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Oceff_Wipe2/z_oceff_wipe2.hpp -------------------------------------------------------------------------------- /src/game/actors/Oceff_Wipe3/z_oceff_wipe3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Oceff_Wipe3/z_oceff_wipe3.cpp -------------------------------------------------------------------------------- /src/game/actors/Oceff_Wipe3/z_oceff_wipe3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Oceff_Wipe3/z_oceff_wipe3.hpp -------------------------------------------------------------------------------- /src/game/actors/Oceff_Wipe4/z_oceff_wipe4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Oceff_Wipe4/z_oceff_wipe4.cpp -------------------------------------------------------------------------------- /src/game/actors/Oceff_Wipe4/z_oceff_wipe4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Oceff_Wipe4/z_oceff_wipe4.hpp -------------------------------------------------------------------------------- /src/game/actors/Player/z_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Player/z_player.cpp -------------------------------------------------------------------------------- /src/game/actors/Shot_Sun/z_shot_sun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Shot_Sun/z_shot_sun.cpp -------------------------------------------------------------------------------- /src/game/actors/Shot_Sun/z_shot_sun.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Shot_Sun/z_shot_sun.hpp -------------------------------------------------------------------------------- /src/game/actors/Shot_Sun/z_shot_sun.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/actors/Shot_Sun/z_shot_sun.spec -------------------------------------------------------------------------------- /src/game/classes/Class_4EBE18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/classes/Class_4EBE18.cpp -------------------------------------------------------------------------------- /src/game/classes/Class_4EBE18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/classes/Class_4EBE18.h -------------------------------------------------------------------------------- /src/game/skeleton_animation_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/skeleton_animation_model.cpp -------------------------------------------------------------------------------- /src/game/z3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z3D.cpp -------------------------------------------------------------------------------- /src/game/z_actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_actor.cpp -------------------------------------------------------------------------------- /src/game/z_actor_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_actor_table.cpp -------------------------------------------------------------------------------- /src/game/z_animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_animation.cpp -------------------------------------------------------------------------------- /src/game/z_bgcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_bgcheck.cpp -------------------------------------------------------------------------------- /src/game/z_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_camera.cpp -------------------------------------------------------------------------------- /src/game/z_collision_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_collision_check.cpp -------------------------------------------------------------------------------- /src/game/z_common_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_common_data.cpp -------------------------------------------------------------------------------- /src/game/z_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_demo.cpp -------------------------------------------------------------------------------- /src/game/z_eff_blure.cpp: -------------------------------------------------------------------------------- 1 | extern "C" { 2 | #include "non_matchings.hpp" 3 | 4 | GLOBAL_ASM("data/z_Effect_Blure.data.s") 5 | } 6 | -------------------------------------------------------------------------------- /src/game/z_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_effect.cpp -------------------------------------------------------------------------------- /src/game/z_equipment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_equipment.cpp -------------------------------------------------------------------------------- /src/game/z_face_reaction.cpp: -------------------------------------------------------------------------------- 1 | extern "C" { 2 | #include "non_matchings.hpp" 3 | 4 | GLOBAL_ASM("data/z_face_reaction.data.s") 5 | } 6 | -------------------------------------------------------------------------------- /src/game/z_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_lib.cpp -------------------------------------------------------------------------------- /src/game/z_play.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_play.cpp -------------------------------------------------------------------------------- /src/game/z_skelanime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/z_skelanime.cpp -------------------------------------------------------------------------------- /src/game/zar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/game/zar.cpp -------------------------------------------------------------------------------- /src/nn/applet.cpp: -------------------------------------------------------------------------------- 1 | #include "non_matchings.hpp" 2 | 3 | GLOBAL_ASM("asm/_ZN2nn6applet3CTR28SysSleepAcceptedCallbackInfo8RegisterEv.s") 4 | -------------------------------------------------------------------------------- /src/nn/dbg.cpp: -------------------------------------------------------------------------------- 1 | #include "non_matchings.hpp" 2 | 3 | GLOBAL_ASM("asm/_ZN2nn3dbg5PanicEv.s") 4 | -------------------------------------------------------------------------------- /src/nn/dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/nn/dsp.cpp -------------------------------------------------------------------------------- /src/nn/err.cpp: -------------------------------------------------------------------------------- 1 | #include "non_matchings.hpp" 2 | 3 | GLOBAL_ASM("asm/_ZN2nn3err3CTR9ANONYMOUS5ThrowERNS1_12FatalErrInfoE.s") 4 | -------------------------------------------------------------------------------- /src/nn/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/nn/os.cpp -------------------------------------------------------------------------------- /src/nn/srv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/nn/srv.cpp -------------------------------------------------------------------------------- /src/nn/svc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/src/nn/svc.cpp -------------------------------------------------------------------------------- /tools/ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/tools/ctx.py -------------------------------------------------------------------------------- /tools/preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/tools/preproc.py -------------------------------------------------------------------------------- /tools/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldaret/oot3d/HEAD/tools/progress.py --------------------------------------------------------------------------------