├── .clang-format ├── .flake8 ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── extensions.json └── tasks.json ├── LICENSE ├── README.md ├── assets └── objdiff.png ├── config ├── GAFE01_00 │ ├── build.sha1 │ ├── config.yml │ ├── foresta │ │ ├── splits.txt │ │ └── symbols.txt │ ├── ldscript.tpl │ ├── splits.txt │ └── symbols.txt └── GAFU01_00 │ ├── build.sha1 │ ├── config.yml │ ├── foresta │ ├── splits.txt │ └── symbols.txt │ ├── ldscript.tpl │ ├── splits.txt │ └── symbols.txt ├── configure.py ├── docs ├── decomp_basics.md ├── decomp_me_basics.md ├── doc_assets │ ├── decomp_me_compiler_settings.png │ ├── dolphin_extract.png │ ├── dolphin_properties.png │ ├── ghidra_analyze_dialog.png │ ├── ghidra_choose_data_type.png │ ├── ghidra_data_manager_struct_edit.png │ ├── ghidra_data_type_dialog.png │ ├── ghidra_edit_function_signature.png │ ├── ghidra_import_dialog.png │ ├── ghidra_import_file.png │ ├── ghidra_inline_register_function.png │ ├── ghidra_install_extensions.png │ ├── ghidra_install_extensions_window.png │ ├── ghidra_parse_c_dialog.png │ ├── ghidra_parse_c_source.png │ ├── ghidra_rename_variable.png │ ├── ghidra_retype_variable.png │ ├── ghidra_struct_editor_dialog.png │ └── m2c_compiler_settings.png ├── extract_game.md ├── generating_decomp_context.md ├── ghidra_basics.md ├── ghidra_setup.md └── m2c_basics.md ├── include ├── Famicom │ ├── famicom.h │ ├── famicomInternal.hpp │ ├── famicomPriv.h │ ├── ks_nes.h │ ├── ks_nes_common.h │ ├── ks_nes_core.h │ └── ks_nes_draw.h ├── GBA │ ├── GBAPriv.h │ └── gba.h ├── GBA2 │ └── gba2.h ├── JSystem │ ├── J2D │ │ ├── J2DGXColorS10.h │ │ ├── J2DGrafContext.h │ │ ├── J2DIndBlock.h │ │ └── J2DTypes.h │ ├── J3D │ │ └── J3DTypes.h │ ├── JFramework │ │ ├── JFWDisplay.h │ │ └── JFWSystem.h │ ├── JGadget │ │ ├── define.h │ │ └── linklist.h │ ├── JGeometry.h │ ├── JKernel │ │ ├── JKRAram.h │ │ ├── JKRArchive.h │ │ ├── JKRDecomp.h │ │ ├── JKRDisposer.h │ │ ├── JKRDvdAramRipper.h │ │ ├── JKRDvdFile.h │ │ ├── JKRDvdRipper.h │ │ ├── JKREnum.h │ │ ├── JKRExpHeap.h │ │ ├── JKRFile.h │ │ ├── JKRFileFinder.h │ │ ├── JKRFileLoader.h │ │ ├── JKRHeap.h │ │ ├── JKRMacro.h │ │ └── JKRThread.h │ ├── JMacro.h │ ├── JSupport.h │ ├── JSupport │ │ ├── JSUFileInputStream.h │ │ ├── JSUInputStream.h │ │ ├── JSUIosBase.h │ │ ├── JSUList.h │ │ ├── JSURandomInputStream.h │ │ ├── JSUStream.h │ │ └── JSUStreamEnum.h │ ├── JSystem.h │ ├── JUtility │ │ ├── JUTAssertion.h │ │ ├── JUTConsole.h │ │ ├── JUTDbPrint.h │ │ ├── JUTDirectFile.h │ │ ├── JUTDirectPrint.h │ │ ├── JUTEnum.h │ │ ├── JUTException.h │ │ ├── JUTFader.h │ │ ├── JUTFont.h │ │ ├── JUTGamePad.h │ │ ├── JUTGraphFifo.h │ │ ├── JUTProcBar.h │ │ ├── JUTVideo.h │ │ ├── JUTXfb.h │ │ └── TColor.h │ └── ResTIMG.h ├── MSL_C │ ├── MSL_Common │ │ └── float.h │ ├── MSL_Common_Embedded │ │ └── Math │ │ │ └── fdlibm.h │ ├── ansi_files.h │ ├── ansi_fp.h │ ├── buffer_io.h │ ├── ctype.h │ ├── ctype_api.h │ ├── direct_io.h │ ├── locale.h │ ├── math.h │ ├── mbstring.h │ ├── printf.h │ ├── rand.h │ ├── scanf.h │ ├── string.h │ ├── w_math.h │ └── wchar_io.h ├── MSL_CPP │ ├── algorithm.h │ └── iterator.h ├── OdemuExi2 │ └── odemuexi │ │ └── DebuggerDriver.h ├── PowerPC_EABI_Support │ ├── MetroTRK │ │ ├── custconn │ │ │ ├── CircleBuffer.h │ │ │ └── cc_gdev.h │ │ ├── dstypes.h │ │ ├── memmap.h │ │ ├── ppc_reg.h │ │ ├── trk.h │ │ ├── trkenum.h │ │ └── trktypes.h │ └── Msl │ │ └── MSL_C │ │ └── PPC_EABI │ │ └── cmath_gcn.h ├── PreRender.h ├── Runtime.PPCEABI.H │ ├── MWCPlusLib.h │ └── NMWException.h ├── THA_GA.h ├── TwoHeadArena.h ├── _mem.h ├── ac_airplane.h ├── ac_animal_logo.h ├── ac_ant.h ├── ac_aprilfool_control.h ├── ac_aprilfool_control_h.h ├── ac_arrange_ftr.h ├── ac_arrange_room.h ├── ac_ball.h ├── ac_balloon.h ├── ac_bee.h ├── ac_birth_control.h ├── ac_boat.h ├── ac_boat_demo.h ├── ac_boxManager.h ├── ac_boxMove.h ├── ac_boxTrick01.h ├── ac_br_shop.h ├── ac_bridge_a.h ├── ac_broker_design.h ├── ac_buggy.h ├── ac_common.h ├── ac_conveni.h ├── ac_cottage.h ├── ac_count02.h ├── ac_countdown.h ├── ac_countdown_clip.h ├── ac_countdown_npc0.h ├── ac_countdown_npc1.h ├── ac_depart.h ├── ac_douzou.h ├── ac_dummy.h ├── ac_dump.h ├── ac_effectbg.h ├── ac_ev_angler.h ├── ac_ev_artist.h ├── ac_ev_broker.h ├── ac_ev_broker2.h ├── ac_ev_carpetPeddler.h ├── ac_ev_castaway.h ├── ac_ev_designer.h ├── ac_ev_dokutu.h ├── ac_ev_dozaemon.h ├── ac_ev_ghost.h ├── ac_ev_gypsy.h ├── ac_ev_kabuPeddler.h ├── ac_ev_majin.h ├── ac_ev_miko.h ├── ac_ev_pumpkin.h ├── ac_ev_santa.h ├── ac_ev_soncho.h ├── ac_ev_soncho2.h ├── ac_ev_speech_soncho.h ├── ac_ev_turkey.h ├── ac_ev_yomise.h ├── ac_event_manager.h ├── ac_fallS.h ├── ac_fallSESW.h ├── ac_field_draw.h ├── ac_fieldm_draw.h ├── ac_flag.h ├── ac_furniture.h ├── ac_fuusen.h ├── ac_garagara.h ├── ac_ghog.h ├── ac_go_home_npc.h ├── ac_goza.h ├── ac_groundhog_control.h ├── ac_groundhog_control_h.h ├── ac_groundhog_npc0.h ├── ac_gyo_kage.h ├── ac_gyo_release.h ├── ac_gyoei.h ├── ac_gyoei_h.h ├── ac_halloween_npc.h ├── ac_hanabi_npc0.h ├── ac_hanabi_npc1.h ├── ac_hanami_npc0.h ├── ac_hanami_npc1.h ├── ac_handOverItem.h ├── ac_haniwa.h ├── ac_harvest_npc0.h ├── ac_harvest_npc1.h ├── ac_hatumode_control.h ├── ac_hatumode_npc0.h ├── ac_house.h ├── ac_house_clock.h ├── ac_house_goki.h ├── ac_htable.h ├── ac_ins_amenbo.h ├── ac_ins_batta.h ├── ac_ins_chou.h ├── ac_ins_dango.h ├── ac_ins_goki.h ├── ac_ins_hitodama.h ├── ac_ins_hotaru.h ├── ac_ins_ka.h ├── ac_ins_kabuto.h ├── ac_ins_kera.h ├── ac_ins_mino.h ├── ac_ins_semi.h ├── ac_ins_tentou.h ├── ac_ins_tonbo.h ├── ac_insect.h ├── ac_insect_h.h ├── ac_intro_demo.h ├── ac_kago.h ├── ac_kamakura.h ├── ac_kamakura_indoor.h ├── ac_kamakura_npc0.h ├── ac_koinobori.h ├── ac_lighthouse_switch.h ├── ac_lotus.h ├── ac_mailbox.h ├── ac_mbg.h ├── ac_mikanbox.h ├── ac_mikanbox_clip.h ├── ac_mikuji.h ├── ac_misin.h ├── ac_misin_clip.h ├── ac_mscore_control.h ├── ac_mural.h ├── ac_museum.h ├── ac_museum_fish.h ├── ac_museum_fish_priv.h ├── ac_museum_fossil.h ├── ac_museum_indoor.h ├── ac_museum_insect.h ├── ac_museum_insect_priv.h ├── ac_museum_picture.h ├── ac_my_house.h ├── ac_my_indoor.h ├── ac_my_room.h ├── ac_nameplate.h ├── ac_needlework_indoor.h ├── ac_needlework_indoor_clip.h ├── ac_needlework_shop.h ├── ac_normal_npc.h ├── ac_npc.h ├── ac_npc2.h ├── ac_npc_anim_def.h ├── ac_npc_conv_master.h ├── ac_npc_curator.h ├── ac_npc_depart_master.h ├── ac_npc_engineer.h ├── ac_npc_guide.h ├── ac_npc_guide2.h ├── ac_npc_h.h ├── ac_npc_hem.h ├── ac_npc_majin.h ├── ac_npc_majin2.h ├── ac_npc_majin3.h ├── ac_npc_majin4.h ├── ac_npc_majin5.h ├── ac_npc_mamedanuki.h ├── ac_npc_mask_cat.h ├── ac_npc_mask_cat2.h ├── ac_npc_needlework.h ├── ac_npc_p_sel.h ├── ac_npc_p_sel2.h ├── ac_npc_police.h ├── ac_npc_police2.h ├── ac_npc_post_girl.h ├── ac_npc_post_man.h ├── ac_npc_rcn_guide.h ├── ac_npc_rcn_guide2.h ├── ac_npc_restart.h ├── ac_npc_rtc.h ├── ac_npc_sendo.h ├── ac_npc_shasho.h ├── ac_npc_shop_common.h ├── ac_npc_shop_master.h ├── ac_npc_shop_mastersp.h ├── ac_npc_sleep_obaba.h ├── ac_npc_soncho.h ├── ac_npc_station_master.h ├── ac_npc_super_master.h ├── ac_npc_totakeke.h ├── ac_police_box.h ├── ac_post_office.h ├── ac_present_demo.h ├── ac_present_npc.h ├── ac_psnowman.h ├── ac_pterminal.h ├── ac_quest_manager.h ├── ac_quest_manager_clip.h ├── ac_quest_talk_fj_init.h ├── ac_quest_talk_greeting.h ├── ac_quest_talk_init.h ├── ac_quest_talk_island.h ├── ac_quest_talk_normal_init.h ├── ac_radio.h ├── ac_reserve.h ├── ac_reset_demo.h ├── ac_ride_off_demo.h ├── ac_rope.h ├── ac_s_car.h ├── ac_sample.h ├── ac_set_manager.h ├── ac_set_npc_manager.h ├── ac_set_ovl_gyoei.h ├── ac_set_ovl_insect.h ├── ac_shop.h ├── ac_shop_design.h ├── ac_shop_goods.h ├── ac_shop_goods_h.h ├── ac_shop_indoor.h ├── ac_shop_level.h ├── ac_shop_manekin.h ├── ac_shop_umbrella.h ├── ac_shrine.h ├── ac_sign.h ├── ac_snowman.h ├── ac_station.h ├── ac_station_clip.h ├── ac_structure.h ├── ac_super.h ├── ac_t_anrium1.h ├── ac_t_bag1.h ├── ac_t_bag2.h ├── ac_t_biscus1.h ├── ac_t_biscus2.h ├── ac_t_biscus3.h ├── ac_t_biscus4.h ├── ac_t_cobra1.h ├── ac_t_cracker.h ├── ac_t_flag.h ├── ac_t_hanabi.h ├── ac_t_hasu1.h ├── ac_t_hat1.h ├── ac_t_hat2.h ├── ac_t_hat3.h ├── ac_t_keitai.h ├── ac_t_npc_sao.h ├── ac_t_pistol.h ├── ac_t_rei1.h ├── ac_t_rei2.h ├── ac_t_tama.h ├── ac_t_tumbler.h ├── ac_t_umbrella.h ├── ac_t_utiwa.h ├── ac_t_zinnia1.h ├── ac_t_zinnia2.h ├── ac_taisou_npc0.h ├── ac_tama.h ├── ac_tamaire_npc0.h ├── ac_tamaire_npc1.h ├── ac_tent.h ├── ac_tokyoso_control.h ├── ac_tokyoso_npc0.h ├── ac_tokyoso_npc1.h ├── ac_tools.h ├── ac_toudai.h ├── ac_train0.h ├── ac_train1.h ├── ac_train_door.h ├── ac_train_window.h ├── ac_tukimi.h ├── ac_tukimi_npc0.h ├── ac_tukimi_npc1.h ├── ac_tunahiki_control.h ├── ac_tunahiki_npc0.h ├── ac_tunahiki_npc1.h ├── ac_turi.h ├── ac_turi_clip.h ├── ac_turi_npc0.h ├── ac_uki.h ├── ac_weather.h ├── ac_weather_fine.h ├── ac_weather_leaf.h ├── ac_weather_rain.h ├── ac_weather_sakura.h ├── ac_weather_snow.h ├── ac_windmill.h ├── ac_yatai.h ├── amcstubs │ └── AmcExi2Stubs.h ├── audio.h ├── audio_defs.h ├── bg_cherry_item.h ├── bg_item.h ├── bg_item_h.h ├── bg_police_item.h ├── bg_post_item.h ├── bg_winter_item.h ├── bg_xmas_item.h ├── boot.h ├── bootdata.h ├── c_keyframe.h ├── cmath.h ├── dataobject.h ├── dolphin.h ├── dolphin │ ├── PPCArch.h │ ├── ai.h │ ├── ar.h │ ├── base │ │ └── PPCArch.h │ ├── card.h │ ├── card │ │ ├── CARDBios.h │ │ ├── CARDCheck.h │ │ ├── CARDCreate.h │ │ ├── CARDDelete.h │ │ ├── CARDDir.h │ │ ├── CARDFormat.h │ │ ├── CARDMount.h │ │ ├── CARDOpen.h │ │ ├── CARDRdwr.h │ │ ├── CARDRead.h │ │ ├── CARDRename.h │ │ ├── CARDStat.h │ │ └── CARDWrite.h │ ├── db.h │ ├── db │ │ └── DBInterface.h │ ├── dsp.h │ ├── dsp │ │ └── dsp.h │ ├── dvd.h │ ├── exi.h │ ├── gx.h │ ├── gx │ │ ├── GXBump.h │ │ ├── GXCommandList.h │ │ ├── GXCull.h │ │ ├── GXDispList.h │ │ ├── GXDraw.h │ │ ├── GXEnum.h │ │ ├── GXExtra.h │ │ ├── GXFifo.h │ │ ├── GXFrameBuffer.h │ │ ├── GXGeometry.h │ │ ├── GXGet.h │ │ ├── GXLighting.h │ │ ├── GXManage.h │ │ ├── GXMisc.h │ │ ├── GXPerf.h │ │ ├── GXPixel.h │ │ ├── GXPriv.h │ │ ├── GXRegs.h │ │ ├── GXStruct.h │ │ ├── GXTev.h │ │ ├── GXTexture.h │ │ ├── GXTransform.h │ │ ├── GXVerify.h │ │ └── GXVert.h │ ├── hw_regs.h │ ├── mtx.h │ ├── odemuexi │ │ └── DebuggerDriver.h │ ├── os.h │ ├── os │ │ ├── OSAddress.h │ │ ├── OSAlarm.h │ │ ├── OSAlloc.h │ │ ├── OSArena.h │ │ ├── OSAudioSystem.h │ │ ├── OSCache.h │ │ ├── OSContext.h │ │ ├── OSError.h │ │ ├── OSException.h │ │ ├── OSFastCast.h │ │ ├── OSFont.h │ │ ├── OSInterrupt.h │ │ ├── OSLink.h │ │ ├── OSMemory.h │ │ ├── OSMessage.h │ │ ├── OSModule.h │ │ ├── OSMutex.h │ │ ├── OSReset.h │ │ ├── OSResetSW.h │ │ ├── OSRtc.h │ │ ├── OSSerial.h │ │ ├── OSThread.h │ │ ├── OSTime.h │ │ ├── OSTimer.h │ │ ├── OSUtil.h │ │ └── __ppc_eabi_init.h │ ├── pad.h │ ├── private │ │ └── card.h │ ├── si.h │ ├── sipriv.h │ ├── string.h │ ├── trk.h │ ├── types.h │ └── vi.h ├── dvderr.h ├── ef_effect_control.h ├── ef_lamp_light.h ├── ef_room_sunshine.h ├── ef_room_sunshine_minsect.h ├── ef_room_sunshine_museum.h ├── ef_room_sunshine_police.h ├── ef_room_sunshine_posthouse.h ├── ev_cherry_manager.h ├── evw_anime.h ├── executor.h ├── f_furniture.h ├── famicom_emu.h ├── first_game.h ├── game.h ├── game_h.h ├── gamealloc.h ├── gfxalloc.h ├── graph.h ├── initial_menu.h ├── irqmgr.h ├── jaudio_NES │ ├── OSAttention.h │ ├── aictrl.h │ ├── aramcall.h │ ├── astest.h │ ├── audiocommon.h │ ├── audioconst.h │ ├── audioheaders.h │ ├── audiomacro.h │ ├── audiostruct.h │ ├── audiotable.h │ ├── audiothread.h │ ├── audiowork.h │ ├── bankdrv.h │ ├── bankread.h │ ├── bx.h │ ├── centcalc.h │ ├── channel.h │ ├── cmdstack.h │ ├── connect.h │ ├── cpubuf.h │ ├── driver.h │ ├── driverinterface.h │ ├── dsp_GBAKey.h │ ├── dsp_cardunlock.h │ ├── dspboot.h │ ├── dspbuf.h │ ├── dspdriver.h │ ├── dspinterface.h │ ├── dspproc.h │ ├── dummyprobe.h │ ├── dummyrom.h │ ├── dvdthread.h │ ├── effect.h │ ├── emusound.h │ ├── emusound.hpp │ ├── fat.h │ ├── fxinterface.h │ ├── game64.h │ ├── game64_cpp.h │ ├── heapctrl.h │ ├── ipldec.h │ ├── ja_calc.h │ ├── jammain_2.h │ ├── jamosc.h │ ├── kappa.h │ ├── melody.h │ ├── memory.h │ ├── neosthread.h │ ├── noteon.h │ ├── oneshot.h │ ├── os.h │ ├── playercall.h │ ├── radio.h │ ├── random.h │ ├── rate.h │ ├── rhythm.h │ ├── rspsim.h │ ├── sample.h │ ├── seqsetup.h │ ├── staff.h │ ├── streamctrl.h │ ├── sub_sys.h │ ├── system.h │ ├── tables.h │ ├── track.h │ ├── verysimple.h │ ├── wave_read.h │ └── waveread.h ├── jsyswrap.h ├── jsyswrap_cpp.h ├── lb_reki.h ├── lb_rtc.h ├── libc │ ├── assert.h │ ├── ctype.h │ ├── errno.h │ ├── float.h │ ├── limits.h │ ├── math.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ └── wchar.h ├── libc64 │ ├── __osMalloc.h │ ├── aprintf.h │ ├── malloc.h │ ├── math64.h │ ├── qrand.h │ ├── sleep.h │ └── sprintf.h ├── libforest │ ├── batconfig.h │ ├── emu64.h │ ├── emu64 │ │ ├── emu64.hpp │ │ ├── emu64_wrapper.h │ │ └── texture_cache.h │ ├── fault.h │ ├── gbi_extensions.h │ └── osreport.h ├── libjsys │ └── jsyswrapper.h ├── libu64 │ ├── debug.h │ ├── gfxprint.h │ ├── pad.h │ └── u64types.h ├── libultra │ ├── contreaddata.h │ ├── controller.h │ ├── gu.h │ ├── initialize.h │ ├── libultra.h │ ├── osContPad.h │ ├── osMesg.h │ ├── osThread.h │ ├── os_pfs.h │ ├── os_pi.h │ ├── os_thread.h │ ├── os_timer.h │ ├── setthreadpri.h │ ├── shutdown.h │ ├── timerintr.h │ ├── ultratypes.h │ └── xprintf.h ├── m_actor.h ├── m_actor_dlftbls.h ├── m_actor_shadow.h ├── m_actor_type.h ├── m_address_ovl.h ├── m_address_ovl_h.h ├── m_all_grow.h ├── m_all_grow_ovl.h ├── m_bank_ovl.h ├── m_bank_ovl_h.h ├── m_banti.h ├── m_bg_item.h ├── m_bg_tex.h ├── m_bg_type.h ├── m_bgm.h ├── m_birthday_ovl.h ├── m_birthday_ovl_h.h ├── m_board_ovl.h ├── m_board_ovl_h.h ├── m_calendar.h ├── m_calendar_ovl.h ├── m_calendar_ovl_h.h ├── m_camera2.h ├── m_card.h ├── m_catalog_ovl.h ├── m_catalog_ovl_h.h ├── m_choice.h ├── m_clip.h ├── m_cockroach.h ├── m_collision_bg.h ├── m_collision_obj.h ├── m_combi_type.h ├── m_common_data.h ├── m_config.h ├── m_controller.h ├── m_cpak.h ├── m_cpedit_ovl.h ├── m_cpedit_ovl_h.h ├── m_cpmail_ovl.h ├── m_cpmail_ovl_h.h ├── m_cporiginal_ovl.h ├── m_cporiginal_ovl_h.h ├── m_cpwarning_ovl.h ├── m_cpwarning_ovl_h.h ├── m_debug.h ├── m_debug_display.h ├── m_debug_hayakawa.h ├── m_debug_mode.h ├── m_demo.h ├── m_design_ovl.h ├── m_design_ovl_h.h ├── m_diary.h ├── m_diary_ovl.h ├── m_diary_ovl_h.h ├── m_eappli.h ├── m_editEndChk_ovl.h ├── m_editEndChk_ovl_h.h ├── m_editor_ovl.h ├── m_editor_ovl_h.h ├── m_event.h ├── m_event_map_npc.h ├── m_fbdemo.h ├── m_fbdemo_fade.h ├── m_fbdemo_triforce.h ├── m_fbdemo_wipe.h ├── m_fbdemo_wipe1.h ├── m_fg_type.h ├── m_field_assessment.h ├── m_field_info.h ├── m_field_make.h ├── m_fishrecord.h ├── m_flashrom.h ├── m_font.h ├── m_ftr_def.h ├── m_fuusen.h ├── m_game_dlftbls.h ├── m_gba_ovl.h ├── m_gba_ovl_h.h ├── m_hand_ovl.h ├── m_hand_ovl_h.h ├── m_handbill.h ├── m_handbill_data.h ├── m_haniwaPortrait_ovl.h ├── m_haniwaPortrait_ovl_h.h ├── m_haniwa_ovl.h ├── m_haniwa_ovl_h.h ├── m_hboard_ovl.h ├── m_home.h ├── m_home_h.h ├── m_house.h ├── m_huusui_room.h ├── m_huusui_room_ovl.h ├── m_inventory_ovl.h ├── m_inventory_ovl_h.h ├── m_island.h ├── m_item_debug.h ├── m_item_name.h ├── m_kabu_manager.h ├── m_kankyo.h ├── m_land.h ├── m_land_h.h ├── m_ledit_ovl.h ├── m_lib.h ├── m_lights.h ├── m_mail.h ├── m_mail_check.h ├── m_mail_check_ovl.h ├── m_mail_password_check.h ├── m_mailbox_ovl.h ├── m_mailbox_ovl_h.h ├── m_malloc.h ├── m_map_ovl.h ├── m_map_ovl_h.h ├── m_mark_room.h ├── m_mark_room_ovl.h ├── m_mask_cat.h ├── m_melody.h ├── m_mscore_ovl.h ├── m_mscore_ovl_h.h ├── m_msg.h ├── m_msg_data.h ├── m_msg_enum.h ├── m_museum.h ├── m_museum_display.h ├── m_mushroom.h ├── m_music_ovl.h ├── m_music_ovl_h.h ├── m_name_table.h ├── m_name_table_floor_decl.h ├── m_name_table_wall_decl.h ├── m_needlework.h ├── m_needlework_ovl.h ├── m_needlework_ovl_h.h ├── m_nmibuf.h ├── m_notice.h ├── m_notice_ovl.h ├── m_notice_ovl_h.h ├── m_npc.h ├── m_npc_personal_id.h ├── m_npc_schedule.h ├── m_npc_schedule_h.h ├── m_npc_walk.h ├── m_olib.h ├── m_passwordChk_ovl.h ├── m_passwordChk_ovl_h.h ├── m_passwordMake_ovl.h ├── m_passwordMake_ovl_h.h ├── m_pause.h ├── m_personal_id.h ├── m_play.h ├── m_play_h.h ├── m_player.h ├── m_player_call.h ├── m_player_lib.h ├── m_police_box.h ├── m_post_office.h ├── m_prenmi.h ├── m_private.h ├── m_private_h.h ├── m_quest.h ├── m_random_field.h ├── m_random_field_h.h ├── m_random_field_ovl.h ├── m_rcp.h ├── m_repay_ovl.h ├── m_repay_ovl_h.h ├── m_roll_lib.h ├── m_room_type.h ├── m_scene.h ├── m_scene_ftr.h ├── m_scene_table.h ├── m_select.h ├── m_shop.h ├── m_skin_matrix.h ├── m_snowman.h ├── m_soncho.h ├── m_start_data_init.h ├── m_string.h ├── m_string_data.h ├── m_submenu.h ├── m_submenu_ovl.h ├── m_submenu_ovl_h.h ├── m_tag_ovl.h ├── m_tag_ovl_h.h ├── m_time.h ├── m_timeIn_ovl.h ├── m_timeIn_ovl_h.h ├── m_titledemo.h ├── m_trademark.h ├── m_train_control.h ├── m_vibctl.h ├── m_view.h ├── m_warning_ovl.h ├── m_warning_ovl_h.h ├── m_watch_my_step.h ├── macros.h ├── macros.inc ├── main.h ├── nintendo_hi_0.h ├── padmgr.h ├── player_select.h ├── random_field.h ├── s_cpak.h ├── save_menu.h ├── second_game.h ├── sys_dynamic.h ├── sys_math.h ├── sys_math3d.h ├── sys_matrix.h ├── sys_romcheck.h ├── sys_stacks.h ├── sys_ucode.h ├── sys_vimgr.h ├── terminal.h ├── types.h ├── va_args.h ├── version.h └── zurumode.h ├── orig ├── GAFE01_00 │ └── .gitkeep └── GAFU01_00 │ └── .gitkeep ├── src ├── AUS │ └── game │ │ ├── m_collision_bg.c │ │ ├── m_collision_bg_column.c_inc │ │ ├── m_collision_bg_info.c_inc │ │ ├── m_collision_bg_line.c_inc │ │ ├── m_collision_bg_math.c │ │ ├── m_collision_bg_move.c_inc │ │ ├── m_collision_bg_rewrite.c_inc │ │ ├── m_collision_bg_wall.c_inc │ │ └── m_collision_bg_water.c_inc ├── PreRender.c ├── THA_GA.c ├── TwoHeadArena.c ├── actor │ ├── ac_airplane.c │ ├── ac_animal_logo.c │ ├── ac_animal_logo_misc.c │ ├── ac_ant.c │ ├── ac_aprilfool_control.c │ ├── ac_arrange_ftr.c │ ├── ac_arrange_room.c │ ├── ac_ball.c │ ├── ac_balloon.c │ ├── ac_bee.c │ ├── ac_birth_control.c │ ├── ac_boat.c │ ├── ac_boat_demo.c │ ├── ac_boat_demo_move.c_inc │ ├── ac_boat_move.c_inc │ ├── ac_boxManager.c │ ├── ac_boxMove.c │ ├── ac_boxTrick01.c │ ├── ac_br_shop.c │ ├── ac_br_shop_draw.c_inc │ ├── ac_br_shop_move.c_inc │ ├── ac_bridge_a.c │ ├── ac_broker_design.c │ ├── ac_buggy.c │ ├── ac_buggy_draw.c_inc │ ├── ac_buggy_move.c_inc │ ├── ac_conveni.c │ ├── ac_conveni_draw.c_inc │ ├── ac_conveni_move.c_inc │ ├── ac_cottage.c │ ├── ac_count02.c │ ├── ac_count02_draw.c_inc │ ├── ac_count02_move.c_inc │ ├── ac_countdown.c │ ├── ac_countdown_clip.c_inc │ ├── ac_countdown_draw.c_inc │ ├── ac_countdown_move.c_inc │ ├── ac_depart.c │ ├── ac_depart_draw.c_inc │ ├── ac_depart_move.c_inc │ ├── ac_douzou.c │ ├── ac_douzou_draw.c_inc │ ├── ac_douzou_move.c_inc │ ├── ac_dummy.c │ ├── ac_dump.c │ ├── ac_effectbg.c │ ├── ac_event_manager.c │ ├── ac_fallS.c │ ├── ac_fallSESW.c │ ├── ac_fallSESW_draw.c_inc │ ├── ac_fallSESW_move.c_inc │ ├── ac_fallS_draw.c_inc │ ├── ac_fallS_move.c_inc │ ├── ac_field_draw.c │ ├── ac_fieldm_draw.c │ ├── ac_flag.c │ ├── ac_furniture_data.c_inc │ ├── ac_furniture_profile_data.c_inc │ ├── ac_fuusen.c │ ├── ac_garagara.c │ ├── ac_garagara_ball.c_inc │ ├── ac_ghog.c │ ├── ac_goza.c │ ├── ac_goza_draw.c_inc │ ├── ac_goza_move.c_inc │ ├── ac_groundhog_control.c │ ├── ac_gyo_kage.c │ ├── ac_gyo_kaseki.c │ ├── ac_gyo_release.c │ ├── ac_gyo_test.c │ ├── ac_gyoei.c │ ├── ac_gyoei_clip.c_inc │ ├── ac_gyoei_data.c_inc │ ├── ac_gyoei_draw.c_inc │ ├── ac_gyoei_model.c_inc │ ├── ac_gyoei_move.c_inc │ ├── ac_gyoei_type.c_inc │ ├── ac_handOverItem.c │ ├── ac_handOverItem_clip.c_inc │ ├── ac_handOverItem_draw.c_inc │ ├── ac_handOverItem_move.c_inc │ ├── ac_haniwa.c │ ├── ac_haniwa_move.c_inc │ ├── ac_hatumode_clip_move.c_inc │ ├── ac_hatumode_clip_think.c_inc │ ├── ac_hatumode_control.c │ ├── ac_hatumode_control_move.c_inc │ ├── ac_house.c │ ├── ac_house_clock.c │ ├── ac_house_draw.c_inc │ ├── ac_house_goki.c │ ├── ac_house_move.c_inc │ ├── ac_htable.c │ ├── ac_ins_amenbo.c │ ├── ac_ins_batta.c │ ├── ac_ins_chou.c │ ├── ac_ins_dango.c │ ├── ac_ins_goki.c │ ├── ac_ins_hitodama.c │ ├── ac_ins_hotaru.c │ ├── ac_ins_ka.c │ ├── ac_ins_kabuto.c │ ├── ac_ins_kera.c │ ├── ac_ins_mino.c │ ├── ac_ins_semi.c │ ├── ac_ins_tentou.c │ ├── ac_ins_tonbo.c │ ├── ac_insect.c │ ├── ac_insect_clip.c_inc │ ├── ac_insect_data.c_inc │ ├── ac_insect_draw.c_inc │ ├── ac_insect_move.c_inc │ ├── ac_intro_demo.c │ ├── ac_intro_demo_move.c_inc │ ├── ac_kago.c │ ├── ac_kago_draw.c_inc │ ├── ac_kago_move.c_inc │ ├── ac_kamakura.c │ ├── ac_kamakura_draw.c_inc │ ├── ac_kamakura_indoor.c │ ├── ac_kamakura_move.c_inc │ ├── ac_koinobori.c │ ├── ac_koinobori_draw.c_inc │ ├── ac_koinobori_move.c_inc │ ├── ac_lighthouse_switch.c │ ├── ac_lotus.c │ ├── ac_lotus_draw.c_inc │ ├── ac_lotus_move.c_inc │ ├── ac_mailbox.c │ ├── ac_mailbox_move.c_inc │ ├── ac_mbg.c │ ├── ac_mikanbox.c │ ├── ac_mikanbox_clip.c_inc │ ├── ac_mikanbox_draw.c_inc │ ├── ac_mikanbox_move.c_inc │ ├── ac_mikuji.c │ ├── ac_mikuji_draw.c_inc │ ├── ac_mikuji_move.c_inc │ ├── ac_misin.c │ ├── ac_mscore_control.c │ ├── ac_mural.c │ ├── ac_museum.c │ ├── ac_museum_fish.c │ ├── ac_museum_fish_afish.c_inc │ ├── ac_museum_fish_aroana.c_inc │ ├── ac_museum_fish_base.c_inc │ ├── ac_museum_fish_bass.c_inc │ ├── ac_museum_fish_big_fish.c_inc │ ├── ac_museum_fish_dojou.c_inc │ ├── ac_museum_fish_donko.c_inc │ ├── ac_museum_fish_gupi.c_inc │ ├── ac_museum_fish_hasu.c_inc │ ├── ac_museum_fish_ito.c_inc │ ├── ac_museum_fish_kaseki.c_inc │ ├── ac_museum_fish_kingyo.c_inc │ ├── ac_museum_fish_koi.c_inc │ ├── ac_museum_fish_kurage.c_inc │ ├── ac_museum_fish_medaka.c_inc │ ├── ac_museum_fish_namazu.c_inc │ ├── ac_museum_fish_seafish.c_inc │ ├── ac_museum_fish_small_fish.c_inc │ ├── ac_museum_fish_tai.c_inc │ ├── ac_museum_fish_unagi.c_inc │ ├── ac_museum_fish_zarigani.c_inc │ ├── ac_museum_fossil.c │ ├── ac_museum_indoor.c │ ├── ac_museum_insect.c │ ├── ac_museum_insect_base.c_inc │ ├── ac_museum_insect_batta.c_inc │ ├── ac_museum_insect_chou.c_inc │ ├── ac_museum_insect_dango.c_inc │ ├── ac_museum_insect_genji.c_inc │ ├── ac_museum_insect_goki.c_inc │ ├── ac_museum_insect_hachi.c_inc │ ├── ac_museum_insect_ka.c_inc │ ├── ac_museum_insect_kabuto.c_inc │ ├── ac_museum_insect_kumo.c_inc │ ├── ac_museum_insect_kuwagata.c_inc │ ├── ac_museum_insect_mino.c_inc │ ├── ac_museum_insect_okera.c_inc │ ├── ac_museum_insect_semi.c_inc │ ├── ac_museum_insect_tentou.c_inc │ ├── ac_museum_insect_tonbo.c_inc │ ├── ac_museum_picture.c │ ├── ac_my_house.c │ ├── ac_my_house_draw.c_inc │ ├── ac_my_house_move.c_inc │ ├── ac_my_indoor.c │ ├── ac_my_room.c │ ├── ac_my_room_action.c_inc │ ├── ac_my_room_data.c_inc │ ├── ac_my_room_draw.c_inc │ ├── ac_my_room_goki.c_inc │ ├── ac_my_room_melody.c_inc │ ├── ac_my_room_move.c_inc │ ├── ac_my_room_msg_ctrl.c_inc │ ├── ac_nameplate.c │ ├── ac_needlework_indoor.c │ ├── ac_needlework_shop.c │ ├── ac_needlework_shop_draw.c_inc │ ├── ac_needlework_shop_move.c_inc │ ├── ac_police_box.c │ ├── ac_police_box_draw.c_inc │ ├── ac_police_box_move.c_inc │ ├── ac_post_office.c │ ├── ac_post_office_draw.c_inc │ ├── ac_post_office_move.c_inc │ ├── ac_present_demo.c │ ├── ac_present_demo_move.c_inc │ ├── ac_psnowman.c │ ├── ac_pterminal.c │ ├── ac_quest_contest.c_inc │ ├── ac_quest_errand.c_inc │ ├── ac_quest_manager.c │ ├── ac_quest_talk_fj_init.c │ ├── ac_quest_talk_greeting.c │ ├── ac_quest_talk_init.c │ ├── ac_quest_talk_island.c │ ├── ac_quest_talk_normal_init.c │ ├── ac_radio.c │ ├── ac_radio_draw.c_inc │ ├── ac_radio_move.c_inc │ ├── ac_reserve.c │ ├── ac_reserve_draw.c_inc │ ├── ac_reserve_move.c_inc │ ├── ac_reset_demo.c │ ├── ac_ride_off_demo.c │ ├── ac_ride_off_demo_move.c_inc │ ├── ac_rope.c │ ├── ac_s_car.c │ ├── ac_s_car_draw.c_inc │ ├── ac_s_car_move.c_inc │ ├── ac_sample.c │ ├── ac_set_manager.c │ ├── ac_set_npc_manager.c │ ├── ac_set_ovl_gyoei.c │ ├── ac_set_ovl_insect.c │ ├── ac_shop.c │ ├── ac_shop_design.c │ ├── ac_shop_draw.c_inc │ ├── ac_shop_goods.c │ ├── ac_shop_goods_data.c_inc │ ├── ac_shop_indoor.c │ ├── ac_shop_level.c │ ├── ac_shop_manekin.c │ ├── ac_shop_move.c_inc │ ├── ac_shop_umbrella.c │ ├── ac_shrine.c │ ├── ac_shrine_clip.c_inc │ ├── ac_shrine_draw.c_inc │ ├── ac_shrine_move.c_inc │ ├── ac_sign.c │ ├── ac_snowman.c │ ├── ac_station.c │ ├── ac_station_clip.c_inc │ ├── ac_station_draw.c_inc │ ├── ac_station_move.c_inc │ ├── ac_structure.c │ ├── ac_structure_clip.c_inc │ ├── ac_super.c │ ├── ac_super_draw.c_inc │ ├── ac_super_move.c_inc │ ├── ac_tama.c │ ├── ac_tama_draw.c_inc │ ├── ac_tama_move.c_inc │ ├── ac_tent.c │ ├── ac_tokyoso_clip.c_inc │ ├── ac_tokyoso_control.c │ ├── ac_tools.c │ ├── ac_toudai.c │ ├── ac_toudai_draw.c_inc │ ├── ac_toudai_move.c_inc │ ├── ac_train0.c │ ├── ac_train0_draw.c_inc │ ├── ac_train0_move.c_inc │ ├── ac_train1.c │ ├── ac_train1_draw.c_inc │ ├── ac_train1_move.c_inc │ ├── ac_train_door.c │ ├── ac_train_window.c │ ├── ac_tukimi.c │ ├── ac_tukimi_draw.c_inc │ ├── ac_tukimi_move.c_inc │ ├── ac_tunahiki_control.c │ ├── ac_turi.c │ ├── ac_turi_clip.c_inc │ ├── ac_turi_draw.c_inc │ ├── ac_turi_move.c_inc │ ├── ac_uki.c │ ├── ac_uki_draw.c_inc │ ├── ac_uki_move.c_inc │ ├── ac_weather.c │ ├── ac_weather_fine.c │ ├── ac_weather_leaf.c │ ├── ac_weather_rain.c │ ├── ac_weather_sakura.c │ ├── ac_weather_snow.c │ ├── ac_windmill.c │ ├── ac_windmill_draw.c_inc │ ├── ac_windmill_move.c_inc │ ├── ac_yatai.c │ ├── ac_yatai_draw.c_inc │ ├── ac_yatai_move.c_inc │ ├── npc │ │ ├── ac_countdown_npc0.c │ │ ├── ac_countdown_npc0_anime.c_inc │ │ ├── ac_countdown_npc0_talk.c_inc │ │ ├── ac_countdown_npc1.c │ │ ├── ac_countdown_npc1_anime.c_inc │ │ ├── ac_countdown_npc1_talk.c_inc │ │ ├── ac_go_home_npc.c │ │ ├── ac_groundhog_npc0.c │ │ ├── ac_groundhog_npc0_anime.c_inc │ │ ├── ac_groundhog_npc0_talk.c_inc │ │ ├── ac_halloween_npc.c │ │ ├── ac_halloween_npc_move.c_inc │ │ ├── ac_halloween_npc_schedule.c_inc │ │ ├── ac_halloween_npc_talk.c_inc │ │ ├── ac_hanabi_npc0.c │ │ ├── ac_hanabi_npc0_anime.c_inc │ │ ├── ac_hanabi_npc0_talk.c_inc │ │ ├── ac_hanabi_npc1.c │ │ ├── ac_hanabi_npc1_anime.c_inc │ │ ├── ac_hanabi_npc1_talk.c_inc │ │ ├── ac_hanami_npc0.c │ │ ├── ac_hanami_npc0_anime.c_inc │ │ ├── ac_hanami_npc0_talk.c_inc │ │ ├── ac_hanami_npc1.c │ │ ├── ac_hanami_npc1_anime.c_inc │ │ ├── ac_hanami_npc1_talk.c_inc │ │ ├── ac_harvest_npc0.c │ │ ├── ac_harvest_npc0.c_inc │ │ ├── ac_harvest_npc1.c │ │ ├── ac_harvest_npc1.c_inc │ │ ├── ac_hatumode_npc0.c │ │ ├── ac_hatumode_npc0_schedule.c_inc │ │ ├── ac_hatumode_npc0_talk.c_inc │ │ ├── ac_kamakura_npc0.c │ │ ├── ac_kamakura_npc0_talk.c_inc │ │ ├── ac_normal_npc.c │ │ ├── ac_npc.c │ │ ├── ac_npc2.c │ │ ├── ac_npc2_act_contract.c_inc │ │ ├── ac_npc2_act_not_contract.c_inc │ │ ├── ac_npc2_act_putaway.c_inc │ │ ├── ac_npc2_act_takeout.c_inc │ │ ├── ac_npc2_act_walk.c_inc │ │ ├── ac_npc2_action.c_inc │ │ ├── ac_npc2_move.c_inc │ │ ├── ac_npc2_schedule.c_inc │ │ ├── ac_npc2_schedule_field.c_inc │ │ ├── ac_npc2_schedule_in_house.c_inc │ │ ├── ac_npc2_think.c_inc │ │ ├── ac_npc2_think_exit_wait.c_inc │ │ ├── ac_npc2_think_into_room.c_inc │ │ ├── ac_npc2_think_out_of_room.c_inc │ │ ├── ac_npc2_think_wander.c_inc │ │ ├── ac_npc_act_chase_insect.c_inc │ │ ├── ac_npc_act_clap.c_inc │ │ ├── ac_npc_act_ensou.c_inc │ │ ├── ac_npc_act_get.c_inc │ │ ├── ac_npc_act_greeting.c_inc │ │ ├── ac_npc_act_into_house.c_inc │ │ ├── ac_npc_act_leave_house.c_inc │ │ ├── ac_npc_act_pitfall.c_inc │ │ ├── ac_npc_act_react_tool.c_inc │ │ ├── ac_npc_act_revive.c_inc │ │ ├── ac_npc_act_talk.c_inc │ │ ├── ac_npc_act_trans.c_inc │ │ ├── ac_npc_act_turn.c_inc │ │ ├── ac_npc_act_umb_close.c_inc │ │ ├── ac_npc_act_umb_open.c_inc │ │ ├── ac_npc_act_wait.c_inc │ │ ├── ac_npc_act_walk.c_inc │ │ ├── ac_npc_action.c_inc │ │ ├── ac_npc_anime.c_inc │ │ ├── ac_npc_cloth.c_inc │ │ ├── ac_npc_conv_master.c │ │ ├── ac_npc_conv_master_anime.c │ │ ├── ac_npc_conv_master_move.c_inc │ │ ├── ac_npc_ct.c_inc │ │ ├── ac_npc_ctrl.c_inc │ │ ├── ac_npc_curator.c │ │ ├── ac_npc_curator_move.c_inc │ │ ├── ac_npc_data.c_inc │ │ ├── ac_npc_depart_master.c │ │ ├── ac_npc_depart_master_anime.c │ │ ├── ac_npc_depart_master_move.c_inc │ │ ├── ac_npc_draw.c_inc │ │ ├── ac_npc_dt.c_inc │ │ ├── ac_npc_effect.c_inc │ │ ├── ac_npc_engineer.c │ │ ├── ac_npc_guide.c │ │ ├── ac_npc_guide2.c │ │ ├── ac_npc_guide2_animation.c_inc │ │ ├── ac_npc_guide2_move.c_inc │ │ ├── ac_npc_guide_animation.c_inc │ │ ├── ac_npc_guide_move.c_inc │ │ ├── ac_npc_hand.c_inc │ │ ├── ac_npc_head.c_inc │ │ ├── ac_npc_hem.c │ │ ├── ac_npc_hem.c_inc │ │ ├── ac_npc_init.c_inc │ │ ├── ac_npc_majin.c │ │ ├── ac_npc_majin2.c │ │ ├── ac_npc_majin2_schedule.c_inc │ │ ├── ac_npc_majin2_talk.c_inc │ │ ├── ac_npc_majin3.c │ │ ├── ac_npc_majin3_schedule.c_inc │ │ ├── ac_npc_majin3_talk.c_inc │ │ ├── ac_npc_majin4.c │ │ ├── ac_npc_majin4_schedule.c_inc │ │ ├── ac_npc_majin4_talk.c_inc │ │ ├── ac_npc_majin5.c │ │ ├── ac_npc_majin5_schedule.c_inc │ │ ├── ac_npc_majin_schedule.c_inc │ │ ├── ac_npc_majin_talk.c_inc │ │ ├── ac_npc_mamedanuki.c │ │ ├── ac_npc_mamedanuki_anime.c │ │ ├── ac_npc_mamedanuki_move.c_inc │ │ ├── ac_npc_mask_cat.c │ │ ├── ac_npc_mask_cat2.c │ │ ├── ac_npc_mask_cat2_move.c_inc │ │ ├── ac_npc_mask_cat_move.c_inc │ │ ├── ac_npc_move.c_inc │ │ ├── ac_npc_needlework.c │ │ ├── ac_npc_needlework_gba.c_inc │ │ ├── ac_npc_needlework_schedule.c_inc │ │ ├── ac_npc_needlework_talk.c_inc │ │ ├── ac_npc_p_sel.c │ │ ├── ac_npc_p_sel2.c │ │ ├── ac_npc_p_sel2_schedule.c_inc │ │ ├── ac_npc_p_sel2_talk.c_inc │ │ ├── ac_npc_p_sel_schedule.c_inc │ │ ├── ac_npc_p_sel_talk.c_inc │ │ ├── ac_npc_police.c │ │ ├── ac_npc_police2.c │ │ ├── ac_npc_police2_move.c_inc │ │ ├── ac_npc_police_move.c_inc │ │ ├── ac_npc_post_girl.c │ │ ├── ac_npc_post_girl.c_inc │ │ ├── ac_npc_post_man.c │ │ ├── ac_npc_post_man_anime.c_inc │ │ ├── ac_npc_post_man_move.c_inc │ │ ├── ac_npc_rcn_guide.c │ │ ├── ac_npc_rcn_guide2.c │ │ ├── ac_npc_rcn_guide2_move.c_inc │ │ ├── ac_npc_rcn_guide2_schedule.c_inc │ │ ├── ac_npc_rcn_guide2_talk.c_inc │ │ ├── ac_npc_rcn_guide_move.c_inc │ │ ├── ac_npc_rcn_guide_schedule.c_inc │ │ ├── ac_npc_rcn_guide_talk.c_inc │ │ ├── ac_npc_restart.c │ │ ├── ac_npc_restart_schedule.c_inc │ │ ├── ac_npc_restart_talk.c_inc │ │ ├── ac_npc_rtc.c │ │ ├── ac_npc_rtc_talk.c.inc │ │ ├── ac_npc_rtc_think.c.inc │ │ ├── ac_npc_save.c_inc │ │ ├── ac_npc_schedule.c_inc │ │ ├── ac_npc_schedule_field.c_inc │ │ ├── ac_npc_schedule_in_house.c_inc │ │ ├── ac_npc_schedule_sleep.c_inc │ │ ├── ac_npc_sendo.c │ │ ├── ac_npc_sendo_move.c_inc │ │ ├── ac_npc_shasho.c │ │ ├── ac_npc_shasho_move.c_inc │ │ ├── ac_npc_shop_common.c │ │ ├── ac_npc_shop_master.c │ │ ├── ac_npc_shop_master_anime.c │ │ ├── ac_npc_shop_master_move.c_inc │ │ ├── ac_npc_shop_mastersp.c │ │ ├── ac_npc_shop_mastersp_move.c_inc │ │ ├── ac_npc_shop_mastersp_schedule.c_inc │ │ ├── ac_npc_shop_mastersp_talk.c_inc │ │ ├── ac_npc_sleep_obaba.c │ │ ├── ac_npc_sleep_obaba_act.c_inc │ │ ├── ac_npc_sleep_obaba_animation.c_inc │ │ ├── ac_npc_soncho.c │ │ ├── ac_npc_soncho_schedule.c_inc │ │ ├── ac_npc_soncho_talk.c_inc │ │ ├── ac_npc_sound.c_inc │ │ ├── ac_npc_station_master.c │ │ ├── ac_npc_station_master_move.c_inc │ │ ├── ac_npc_station_master_schedule.c_inc │ │ ├── ac_npc_station_master_talk.c_inc │ │ ├── ac_npc_super_master.c │ │ ├── ac_npc_super_master_anime.c │ │ ├── ac_npc_super_master_move.c_inc │ │ ├── ac_npc_talk.c_inc │ │ ├── ac_npc_think.c_inc │ │ ├── ac_npc_think_go_home.c_inc │ │ ├── ac_npc_think_in_block.c_inc │ │ ├── ac_npc_think_into_house.c_inc │ │ ├── ac_npc_think_leave_house.c_inc │ │ ├── ac_npc_think_pitfall.c_inc │ │ ├── ac_npc_think_sleep.c_inc │ │ ├── ac_npc_think_wander.c_inc │ │ ├── ac_npc_totakeke.c │ │ ├── ac_npc_totakeke_talk.c_inc │ │ ├── ac_npc_totakeke_think.c_inc │ │ ├── ac_present_npc.c │ │ ├── ac_present_npc_schedule.c_inc │ │ ├── ac_taisou_npc0.c │ │ ├── ac_taisou_npc0_anime.c_inc │ │ ├── ac_taisou_npc0_talk.c_inc │ │ ├── ac_tamaire_npc0.c │ │ ├── ac_tamaire_npc0_schedule.c_inc │ │ ├── ac_tamaire_npc0_talk.c_inc │ │ ├── ac_tamaire_npc1.c │ │ ├── ac_tamaire_npc1_schedule.c_inc │ │ ├── ac_tamaire_npc1_talk.c_inc │ │ ├── ac_tokyoso_npc0.c │ │ ├── ac_tokyoso_npc0_schedule.c_inc │ │ ├── ac_tokyoso_npc0_talk.c_inc │ │ ├── ac_tokyoso_npc1.c │ │ ├── ac_tokyoso_npc1_schedule.c_inc │ │ ├── ac_tokyoso_npc1_talk.c_inc │ │ ├── ac_tukimi_npc0.c │ │ ├── ac_tukimi_npc0_anime.c_inc │ │ ├── ac_tukimi_npc0_talk.c_inc │ │ ├── ac_tukimi_npc1.c │ │ ├── ac_tukimi_npc1_anime.c_inc │ │ ├── ac_tukimi_npc1_talk.c_inc │ │ ├── ac_tunahiki_npc0.c │ │ ├── ac_tunahiki_npc0_schedule.c_inc │ │ ├── ac_tunahiki_npc0_talk.c_inc │ │ ├── ac_tunahiki_npc1.c │ │ ├── ac_tunahiki_npc1_schedule.c_inc │ │ ├── ac_tunahiki_npc1_talk.c_inc │ │ ├── ac_turi_npc0.c │ │ ├── ac_turi_npc0_anime.c_inc │ │ ├── ac_turi_npc0_move.c_inc │ │ └── event │ │ │ ├── ac_ev_angler.c │ │ │ ├── ac_ev_angler_move.c_inc │ │ │ ├── ac_ev_artist.c │ │ │ ├── ac_ev_artist_move.c_inc │ │ │ ├── ac_ev_broker.c │ │ │ ├── ac_ev_broker2.c │ │ │ ├── ac_ev_broker2_move.c_inc │ │ │ ├── ac_ev_broker_move.c_inc │ │ │ ├── ac_ev_carpetPeddler.c │ │ │ ├── ac_ev_carpetPeddler.c_inc │ │ │ ├── ac_ev_castaway.c │ │ │ ├── ac_ev_designer.c │ │ │ ├── ac_ev_designer_move.c_inc │ │ │ ├── ac_ev_designer_schedule.c_inc │ │ │ ├── ac_ev_designer_talk.c_inc │ │ │ ├── ac_ev_dokutu.c │ │ │ ├── ac_ev_dokutu_talk.c_inc │ │ │ ├── ac_ev_dozaemon.c │ │ │ ├── ac_ev_dozaemon_move.c_inc │ │ │ ├── ac_ev_dozaemon_schedule.c_inc │ │ │ ├── ac_ev_ghost.c │ │ │ ├── ac_ev_ghost_schedule.c_inc │ │ │ ├── ac_ev_ghost_talk.c_inc │ │ │ ├── ac_ev_gypsy.c │ │ │ ├── ac_ev_gypsy_move.c_inc │ │ │ ├── ac_ev_kabuPeddler.c │ │ │ ├── ac_ev_kabuPeddler_move.c_inc │ │ │ ├── ac_ev_majin.c │ │ │ ├── ac_ev_majin_move.c_inc │ │ │ ├── ac_ev_miko.c │ │ │ ├── ac_ev_miko_move.c_inc │ │ │ ├── ac_ev_pumpkin.c │ │ │ ├── ac_ev_pumpkin_talk.c_inc │ │ │ ├── ac_ev_santa.c │ │ │ ├── ac_ev_santa_move.c_inc │ │ │ ├── ac_ev_soncho.c │ │ │ ├── ac_ev_soncho2.c │ │ │ ├── ac_ev_soncho2_talk.c_inc │ │ │ ├── ac_ev_soncho2_think.c_inc │ │ │ ├── ac_ev_soncho_talk.c_inc │ │ │ ├── ac_ev_speech_soncho.c │ │ │ ├── ac_ev_speech_soncho_talk.c_inc │ │ │ ├── ac_ev_turkey.c │ │ │ ├── ac_ev_yomise.c │ │ │ └── ac_ev_yomise_move.c_inc │ └── tool │ │ ├── ac_t_anrium1.c │ │ ├── ac_t_bag1.c │ │ ├── ac_t_bag2.c │ │ ├── ac_t_biscus1.c │ │ ├── ac_t_biscus2.c │ │ ├── ac_t_biscus3.c │ │ ├── ac_t_biscus4.c │ │ ├── ac_t_cobra1.c │ │ ├── ac_t_cracker.c │ │ ├── ac_t_flag.c │ │ ├── ac_t_hanabi.c │ │ ├── ac_t_hasu1.c │ │ ├── ac_t_hat1.c │ │ ├── ac_t_hat2.c │ │ ├── ac_t_hat3.c │ │ ├── ac_t_keitai.c │ │ ├── ac_t_npc_sao.c │ │ ├── ac_t_pistol.c │ │ ├── ac_t_rei1.c │ │ ├── ac_t_rei2.c │ │ ├── ac_t_tama.c │ │ ├── ac_t_tumbler.c │ │ ├── ac_t_umbrella.c │ │ ├── ac_t_utiwa.c │ │ ├── ac_t_zinnia1.c │ │ └── ac_t_zinnia2.c ├── audio.c ├── bg_item │ ├── bg_cherry_item.c │ ├── bg_cherry_item_data.c_inc │ ├── bg_cherry_item_draw.c_inc │ ├── bg_cherry_item_move.c_inc │ ├── bg_item.c │ ├── bg_item_clip.c_inc │ ├── bg_item_common.c_inc │ ├── bg_item_data.c_inc │ ├── bg_item_draw.c_inc │ ├── bg_item_move.c_inc │ ├── bg_police_item.c │ ├── bg_police_item_data.c_inc │ ├── bg_police_item_draw.c_inc │ ├── bg_police_item_move.c_inc │ ├── bg_post_item.c │ ├── bg_winter_item.c │ ├── bg_winter_item_data.c_inc │ ├── bg_winter_item_draw.c_inc │ ├── bg_winter_item_move.c_inc │ ├── bg_xmas_item.c │ ├── bg_xmas_item_data.c_inc │ ├── bg_xmas_item_draw.c_inc │ └── bg_xmas_item_move.c_inc ├── c_keyframe.c ├── data │ ├── combi │ │ └── data_combi.c │ ├── field │ │ ├── bg │ │ │ ├── acre │ │ │ │ ├── bg_data.c │ │ │ │ ├── grd_player_select │ │ │ │ │ ├── grd_player_select.c │ │ │ │ │ └── grd_player_select_evw_anime.c │ │ │ │ ├── grd_post_office │ │ │ │ │ └── grd_post_office.c │ │ │ │ ├── grd_s_c1_1 │ │ │ │ │ └── grd_s_c1_1.c │ │ │ │ ├── grd_s_c1_2 │ │ │ │ │ └── grd_s_c1_2.c │ │ │ │ ├── grd_s_c1_3 │ │ │ │ │ └── grd_s_c1_3.c │ │ │ │ ├── grd_s_c1_4 │ │ │ │ │ └── grd_s_c1_4.c │ │ │ │ ├── grd_s_c1_5 │ │ │ │ │ └── grd_s_c1_5.c │ │ │ │ ├── grd_s_c1_r1_1 │ │ │ │ │ ├── grd_s_c1_r1_1.c │ │ │ │ │ └── grd_s_c1_r1_1_evw_anime.c │ │ │ │ ├── grd_s_c1_r1_2 │ │ │ │ │ ├── grd_s_c1_r1_2.c │ │ │ │ │ └── grd_s_c1_r1_2_evw_anime.c │ │ │ │ ├── grd_s_c1_r1_3 │ │ │ │ │ ├── grd_s_c1_r1_3.c │ │ │ │ │ └── grd_s_c1_r1_3_evw_anime.c │ │ │ │ ├── grd_s_c1_r2_1 │ │ │ │ │ ├── grd_s_c1_r2_1.c │ │ │ │ │ └── grd_s_c1_r2_1_evw_anime.c │ │ │ │ ├── grd_s_c1_r2_2 │ │ │ │ │ ├── grd_s_c1_r2_2.c │ │ │ │ │ └── grd_s_c1_r2_2_evw_anime.c │ │ │ │ ├── grd_s_c1_r2_3 │ │ │ │ │ ├── grd_s_c1_r2_3.c │ │ │ │ │ └── grd_s_c1_r2_3_evw_anime.c │ │ │ │ ├── grd_s_c1_r3_1 │ │ │ │ │ ├── grd_s_c1_r3_1.c │ │ │ │ │ └── grd_s_c1_r3_1_evw_anime.c │ │ │ │ ├── grd_s_c1_r3_2 │ │ │ │ │ ├── grd_s_c1_r3_2.c │ │ │ │ │ └── grd_s_c1_r3_2_evw_anime.c │ │ │ │ ├── grd_s_c1_r3_3 │ │ │ │ │ ├── grd_s_c1_r3_3.c │ │ │ │ │ └── grd_s_c1_r3_3_evw_anime.c │ │ │ │ ├── grd_s_c1_s_1 │ │ │ │ │ └── grd_s_c1_s_1.c │ │ │ │ ├── grd_s_c1_s_2 │ │ │ │ │ └── grd_s_c1_s_2.c │ │ │ │ ├── grd_s_c1_s_3 │ │ │ │ │ └── grd_s_c1_s_3.c │ │ │ │ ├── grd_s_c1_s_4 │ │ │ │ │ └── grd_s_c1_s_4.c │ │ │ │ ├── grd_s_c2_1 │ │ │ │ │ └── grd_s_c2_1.c │ │ │ │ ├── grd_s_c2_2 │ │ │ │ │ └── grd_s_c2_2.c │ │ │ │ ├── grd_s_c2_3 │ │ │ │ │ ├── grd_s_c2_3.c │ │ │ │ │ └── grd_s_c2_3_evw_anime.c │ │ │ │ ├── grd_s_c2_r1_1 │ │ │ │ │ ├── grd_s_c2_r1_1.c │ │ │ │ │ └── grd_s_c2_r1_1_evw_anime.c │ │ │ │ ├── grd_s_c2_r1_2 │ │ │ │ │ ├── grd_s_c2_r1_2.c │ │ │ │ │ └── grd_s_c2_r1_2_evw_anime.c │ │ │ │ ├── grd_s_c2_r2_1 │ │ │ │ │ ├── grd_s_c2_r2_1.c │ │ │ │ │ └── grd_s_c2_r2_1_evw_anime.c │ │ │ │ ├── grd_s_c2_r2_2 │ │ │ │ │ ├── grd_s_c2_r2_2.c │ │ │ │ │ └── grd_s_c2_r2_2_evw_anime.c │ │ │ │ ├── grd_s_c2_s_1 │ │ │ │ │ └── grd_s_c2_s_1.c │ │ │ │ ├── grd_s_c2_s_2 │ │ │ │ │ └── grd_s_c2_s_2.c │ │ │ │ ├── grd_s_c2_s_3 │ │ │ │ │ └── grd_s_c2_s_3.c │ │ │ │ ├── grd_s_c3_1 │ │ │ │ │ └── grd_s_c3_1.c │ │ │ │ ├── grd_s_c3_2 │ │ │ │ │ ├── grd_s_c3_2.c │ │ │ │ │ └── grd_s_c3_2_evw_anime.c │ │ │ │ ├── grd_s_c3_3 │ │ │ │ │ └── grd_s_c3_3.c │ │ │ │ ├── grd_s_c3_r1_1 │ │ │ │ │ ├── grd_s_c3_r1_1.c │ │ │ │ │ └── grd_s_c3_r1_1_evw_anime.c │ │ │ │ ├── grd_s_c3_r1_2 │ │ │ │ │ ├── grd_s_c3_r1_2.c │ │ │ │ │ └── grd_s_c3_r1_2_evw_anime.c │ │ │ │ ├── grd_s_c3_r2_1 │ │ │ │ │ ├── grd_s_c3_r2_1.c │ │ │ │ │ └── grd_s_c3_r2_1_evw_anime.c │ │ │ │ ├── grd_s_c3_r2_2 │ │ │ │ │ ├── grd_s_c3_r2_2.c │ │ │ │ │ └── grd_s_c3_r2_2_evw_anime.c │ │ │ │ ├── grd_s_c3_s_1 │ │ │ │ │ ├── grd_s_c3_s_1.c │ │ │ │ │ └── grd_s_c3_s_1_evw_anime.c │ │ │ │ ├── grd_s_c4_1 │ │ │ │ │ └── grd_s_c4_1.c │ │ │ │ ├── grd_s_c4_2 │ │ │ │ │ └── grd_s_c4_2.c │ │ │ │ ├── grd_s_c4_3 │ │ │ │ │ └── grd_s_c4_3.c │ │ │ │ ├── grd_s_c4_r1_1 │ │ │ │ │ ├── grd_s_c4_r1_1.c │ │ │ │ │ └── grd_s_c4_r1_1_evw_anime.c │ │ │ │ ├── grd_s_c4_r1_2 │ │ │ │ │ ├── grd_s_c4_r1_2.c │ │ │ │ │ └── grd_s_c4_r1_2_evw_anime.c │ │ │ │ ├── grd_s_c4_r2_1 │ │ │ │ │ ├── grd_s_c4_r2_1.c │ │ │ │ │ └── grd_s_c4_r2_1_evw_anime.c │ │ │ │ ├── grd_s_c4_r2_2 │ │ │ │ │ ├── grd_s_c4_r2_2.c │ │ │ │ │ └── grd_s_c4_r2_2_evw_anime.c │ │ │ │ ├── grd_s_c4_r3_1 │ │ │ │ │ ├── grd_s_c4_r3_1.c │ │ │ │ │ └── grd_s_c4_r3_1_evw_anime.c │ │ │ │ ├── grd_s_c4_r3_2 │ │ │ │ │ ├── grd_s_c4_r3_2.c │ │ │ │ │ └── grd_s_c4_r3_2_evw_anime.c │ │ │ │ ├── grd_s_c4_s_1 │ │ │ │ │ └── grd_s_c4_s_1.c │ │ │ │ ├── grd_s_c4_s_2 │ │ │ │ │ └── grd_s_c4_s_2.c │ │ │ │ ├── grd_s_c5_1 │ │ │ │ │ └── grd_s_c5_1.c │ │ │ │ ├── grd_s_c5_2 │ │ │ │ │ └── grd_s_c5_2.c │ │ │ │ ├── grd_s_c5_3 │ │ │ │ │ └── grd_s_c5_3.c │ │ │ │ ├── grd_s_c5_r1_1 │ │ │ │ │ ├── grd_s_c5_r1_1.c │ │ │ │ │ └── grd_s_c5_r1_1_evw_anime.c │ │ │ │ ├── grd_s_c5_r1_2 │ │ │ │ │ ├── grd_s_c5_r1_2.c │ │ │ │ │ └── grd_s_c5_r1_2_evw_anime.c │ │ │ │ ├── grd_s_c5_r2_1 │ │ │ │ │ ├── grd_s_c5_r2_1.c │ │ │ │ │ └── grd_s_c5_r2_1_evw_anime.c │ │ │ │ ├── grd_s_c5_r2_2 │ │ │ │ │ ├── grd_s_c5_r2_2.c │ │ │ │ │ └── grd_s_c5_r2_2_evw_anime.c │ │ │ │ ├── grd_s_c5_r3_1 │ │ │ │ │ ├── grd_s_c5_r3_1.c │ │ │ │ │ └── grd_s_c5_r3_1_evw_anime.c │ │ │ │ ├── grd_s_c5_r3_2 │ │ │ │ │ ├── grd_s_c5_r3_2.c │ │ │ │ │ └── grd_s_c5_r3_2_evw_anime.c │ │ │ │ ├── grd_s_c5_s_1 │ │ │ │ │ └── grd_s_c5_s_1.c │ │ │ │ ├── grd_s_c5_s_2 │ │ │ │ │ └── grd_s_c5_s_2.c │ │ │ │ ├── grd_s_c6_1 │ │ │ │ │ └── grd_s_c6_1.c │ │ │ │ ├── grd_s_c6_2 │ │ │ │ │ └── grd_s_c6_2.c │ │ │ │ ├── grd_s_c6_3 │ │ │ │ │ └── grd_s_c6_3.c │ │ │ │ ├── grd_s_c6_r1_1 │ │ │ │ │ ├── grd_s_c6_r1_1.c │ │ │ │ │ └── grd_s_c6_r1_1_evw_anime.c │ │ │ │ ├── grd_s_c6_r1_2 │ │ │ │ │ ├── grd_s_c6_r1_2.c │ │ │ │ │ └── grd_s_c6_r1_2_evw_anime.c │ │ │ │ ├── grd_s_c6_r3_1 │ │ │ │ │ ├── grd_s_c6_r3_1.c │ │ │ │ │ └── grd_s_c6_r3_1_evw_anime.c │ │ │ │ ├── grd_s_c6_s_1 │ │ │ │ │ └── grd_s_c6_s_1.c │ │ │ │ ├── grd_s_c7_1 │ │ │ │ │ └── grd_s_c7_1.c │ │ │ │ ├── grd_s_c7_2 │ │ │ │ │ └── grd_s_c7_2.c │ │ │ │ ├── grd_s_c7_3 │ │ │ │ │ ├── grd_s_c7_3.c │ │ │ │ │ └── grd_s_c7_3_evw_anime.c │ │ │ │ ├── grd_s_c7_r1_1 │ │ │ │ │ ├── grd_s_c7_r1_1.c │ │ │ │ │ └── grd_s_c7_r1_1_evw_anime.c │ │ │ │ ├── grd_s_c7_r1_2 │ │ │ │ │ ├── grd_s_c7_r1_2.c │ │ │ │ │ └── grd_s_c7_r1_2_evw_anime.c │ │ │ │ ├── grd_s_c7_r3_1 │ │ │ │ │ ├── grd_s_c7_r3_1.c │ │ │ │ │ └── grd_s_c7_r3_1_evw_anime.c │ │ │ │ ├── grd_s_c7_r3_2 │ │ │ │ │ ├── grd_s_c7_r3_2.c │ │ │ │ │ └── grd_s_c7_r3_2_evw_anime.c │ │ │ │ ├── grd_s_c7_s_1 │ │ │ │ │ └── grd_s_c7_s_1.c │ │ │ │ ├── grd_s_c7_s_2 │ │ │ │ │ └── grd_s_c7_s_2.c │ │ │ │ ├── grd_s_c7_s_3 │ │ │ │ │ └── grd_s_c7_s_3.c │ │ │ │ ├── grd_s_e1_1 │ │ │ │ │ └── grd_s_e1_1.c │ │ │ │ ├── grd_s_e1_r1_1 │ │ │ │ │ ├── grd_s_e1_r1_1.c │ │ │ │ │ └── grd_s_e1_r1_1_evw_anime.c │ │ │ │ ├── grd_s_e2_1 │ │ │ │ │ └── grd_s_e2_1.c │ │ │ │ ├── grd_s_e2_c1_1 │ │ │ │ │ └── grd_s_e2_c1_1.c │ │ │ │ ├── grd_s_e2_m_1 │ │ │ │ │ └── grd_s_e2_m_1.c │ │ │ │ ├── grd_s_e2_o_1 │ │ │ │ │ └── grd_s_e2_o_1.c │ │ │ │ ├── grd_s_e2_t_1 │ │ │ │ │ └── grd_s_e2_t_1.c │ │ │ │ ├── grd_s_e3_1 │ │ │ │ │ └── grd_s_e3_1.c │ │ │ │ ├── grd_s_e3_c1_1 │ │ │ │ │ └── grd_s_e3_c1_1.c │ │ │ │ ├── grd_s_e3_m_1 │ │ │ │ │ └── grd_s_e3_m_1.c │ │ │ │ ├── grd_s_e3_o_1 │ │ │ │ │ └── grd_s_e3_o_1.c │ │ │ │ ├── grd_s_e3_t_1 │ │ │ │ │ └── grd_s_e3_t_1.c │ │ │ │ ├── grd_s_e4_1 │ │ │ │ │ └── grd_s_e4_1.c │ │ │ │ ├── grd_s_e5_1 │ │ │ │ │ └── grd_s_e5_1.c │ │ │ │ ├── grd_s_f_1 │ │ │ │ │ └── grd_s_f_1.c │ │ │ │ ├── grd_s_f_10 │ │ │ │ │ └── grd_s_f_10.c │ │ │ │ ├── grd_s_f_2 │ │ │ │ │ └── grd_s_f_2.c │ │ │ │ ├── grd_s_f_3 │ │ │ │ │ └── grd_s_f_3.c │ │ │ │ ├── grd_s_f_4 │ │ │ │ │ ├── grd_s_f_4.c │ │ │ │ │ └── grd_s_f_4_evw_anime.c │ │ │ │ ├── grd_s_f_5 │ │ │ │ │ ├── grd_s_f_5.c │ │ │ │ │ └── grd_s_f_5_evw_anime.c │ │ │ │ ├── grd_s_f_6 │ │ │ │ │ ├── grd_s_f_6.c │ │ │ │ │ └── grd_s_f_6_evw_anime.c │ │ │ │ ├── grd_s_f_7 │ │ │ │ │ └── grd_s_f_7.c │ │ │ │ ├── grd_s_f_8 │ │ │ │ │ └── grd_s_f_8.c │ │ │ │ ├── grd_s_f_9 │ │ │ │ │ └── grd_s_f_9.c │ │ │ │ ├── grd_s_f_ko_1 │ │ │ │ │ └── grd_s_f_ko_1.c │ │ │ │ ├── grd_s_f_ko_2 │ │ │ │ │ └── grd_s_f_ko_2.c │ │ │ │ ├── grd_s_f_ko_3 │ │ │ │ │ ├── grd_s_f_ko_3.c │ │ │ │ │ └── grd_s_f_ko_3_evw_anime.c │ │ │ │ ├── grd_s_f_mh_1 │ │ │ │ │ └── grd_s_f_mh_1.c │ │ │ │ ├── grd_s_f_mh_2 │ │ │ │ │ └── grd_s_f_mh_2.c │ │ │ │ ├── grd_s_f_mh_3 │ │ │ │ │ └── grd_s_f_mh_3.c │ │ │ │ ├── grd_s_f_mu_1 │ │ │ │ │ └── grd_s_f_mu_1.c │ │ │ │ ├── grd_s_f_mu_2 │ │ │ │ │ └── grd_s_f_mu_2.c │ │ │ │ ├── grd_s_f_mu_3 │ │ │ │ │ ├── grd_s_f_mu_3.c │ │ │ │ │ └── grd_s_f_mu_3_evw_anime.c │ │ │ │ ├── grd_s_f_pk_1 │ │ │ │ │ └── grd_s_f_pk_1.c │ │ │ │ ├── grd_s_f_pk_2 │ │ │ │ │ └── grd_s_f_pk_2.c │ │ │ │ ├── grd_s_f_pk_3 │ │ │ │ │ └── grd_s_f_pk_3.c │ │ │ │ ├── grd_s_hole_test │ │ │ │ │ └── grd_s_hole_test.c │ │ │ │ ├── grd_s_il_1 │ │ │ │ │ └── grd_s_il_1.c │ │ │ │ ├── grd_s_il_2 │ │ │ │ │ └── grd_s_il_2.c │ │ │ │ ├── grd_s_il_3 │ │ │ │ │ └── grd_s_il_3.c │ │ │ │ ├── grd_s_il_4 │ │ │ │ │ └── grd_s_il_4.c │ │ │ │ ├── grd_s_ir_1 │ │ │ │ │ └── grd_s_ir_1.c │ │ │ │ ├── grd_s_ir_2 │ │ │ │ │ └── grd_s_ir_2.c │ │ │ │ ├── grd_s_ir_3 │ │ │ │ │ └── grd_s_ir_3.c │ │ │ │ ├── grd_s_ir_4 │ │ │ │ │ └── grd_s_ir_4.c │ │ │ │ ├── grd_s_m_1 │ │ │ │ │ └── grd_s_m_1.c │ │ │ │ ├── grd_s_m_10 │ │ │ │ │ └── grd_s_m_10.c │ │ │ │ ├── grd_s_m_2 │ │ │ │ │ └── grd_s_m_2.c │ │ │ │ ├── grd_s_m_3 │ │ │ │ │ └── grd_s_m_3.c │ │ │ │ ├── grd_s_m_4 │ │ │ │ │ └── grd_s_m_4.c │ │ │ │ ├── grd_s_m_5 │ │ │ │ │ └── grd_s_m_5.c │ │ │ │ ├── grd_s_m_6 │ │ │ │ │ └── grd_s_m_6.c │ │ │ │ ├── grd_s_m_7 │ │ │ │ │ └── grd_s_m_7.c │ │ │ │ ├── grd_s_m_8 │ │ │ │ │ └── grd_s_m_8.c │ │ │ │ ├── grd_s_m_9 │ │ │ │ │ └── grd_s_m_9.c │ │ │ │ ├── grd_s_m_r1_1 │ │ │ │ │ ├── grd_s_m_r1_1.c │ │ │ │ │ └── grd_s_m_r1_1_evw_anime.c │ │ │ │ ├── grd_s_m_r1_2 │ │ │ │ │ ├── grd_s_m_r1_2.c │ │ │ │ │ └── grd_s_m_r1_2_evw_anime.c │ │ │ │ ├── grd_s_m_r1_3 │ │ │ │ │ ├── grd_s_m_r1_3.c │ │ │ │ │ └── grd_s_m_r1_3_evw_anime.c │ │ │ │ ├── grd_s_m_r1_4 │ │ │ │ │ ├── grd_s_m_r1_4.c │ │ │ │ │ └── grd_s_m_r1_4_evw_anime.c │ │ │ │ ├── grd_s_m_r1_5 │ │ │ │ │ ├── grd_s_m_r1_5.c │ │ │ │ │ └── grd_s_m_r1_5_evw_anime.c │ │ │ │ ├── grd_s_m_r1_b_1 │ │ │ │ │ ├── grd_s_m_r1_b_1.c │ │ │ │ │ └── grd_s_m_r1_b_1_evw_anime.c │ │ │ │ ├── grd_s_m_r1_b_2 │ │ │ │ │ ├── grd_s_m_r1_b_2.c │ │ │ │ │ └── grd_s_m_r1_b_2_evw_anime.c │ │ │ │ ├── grd_s_m_r1_b_3 │ │ │ │ │ ├── grd_s_m_r1_b_3.c │ │ │ │ │ └── grd_s_m_r1_b_3_evw_anime.c │ │ │ │ ├── grd_s_m_ta_1 │ │ │ │ │ ├── grd_s_m_ta_1.c │ │ │ │ │ └── grd_s_m_ta_1_evw_anime.c │ │ │ │ ├── grd_s_m_ta_2 │ │ │ │ │ ├── grd_s_m_ta_2.c │ │ │ │ │ └── grd_s_m_ta_2_evw_anime.c │ │ │ │ ├── grd_s_m_ta_3 │ │ │ │ │ ├── grd_s_m_ta_3.c │ │ │ │ │ └── grd_s_m_ta_3_evw_anime.c │ │ │ │ ├── grd_s_m_wf_1 │ │ │ │ │ ├── grd_s_m_wf_1.c │ │ │ │ │ └── grd_s_m_wf_1_evw_anime.c │ │ │ │ ├── grd_s_m_wf_2 │ │ │ │ │ ├── grd_s_m_wf_2.c │ │ │ │ │ └── grd_s_m_wf_2_evw_anime.c │ │ │ │ ├── grd_s_m_wf_3 │ │ │ │ │ ├── grd_s_m_wf_3.c │ │ │ │ │ └── grd_s_m_wf_3_evw_anime.c │ │ │ │ ├── grd_s_o_1 │ │ │ │ │ ├── grd_s_o_1.c │ │ │ │ │ └── grd_s_o_1_evw_anime.c │ │ │ │ ├── grd_s_o_10 │ │ │ │ │ ├── grd_s_o_10.c │ │ │ │ │ └── grd_s_o_10_evw_anime.c │ │ │ │ ├── grd_s_o_2 │ │ │ │ │ ├── grd_s_o_2.c │ │ │ │ │ └── grd_s_o_2_evw_anime.c │ │ │ │ ├── grd_s_o_3 │ │ │ │ │ ├── grd_s_o_3.c │ │ │ │ │ └── grd_s_o_3_evw_anime.c │ │ │ │ ├── grd_s_o_4 │ │ │ │ │ ├── grd_s_o_4.c │ │ │ │ │ └── grd_s_o_4_evw_anime.c │ │ │ │ ├── grd_s_o_5 │ │ │ │ │ ├── grd_s_o_5.c │ │ │ │ │ └── grd_s_o_5_evw_anime.c │ │ │ │ ├── grd_s_o_6 │ │ │ │ │ ├── grd_s_o_6.c │ │ │ │ │ └── grd_s_o_6_evw_anime.c │ │ │ │ ├── grd_s_o_7 │ │ │ │ │ ├── grd_s_o_7.c │ │ │ │ │ └── grd_s_o_7_evw_anime.c │ │ │ │ ├── grd_s_o_8 │ │ │ │ │ ├── grd_s_o_8.c │ │ │ │ │ └── grd_s_o_8_evw_anime.c │ │ │ │ ├── grd_s_o_9 │ │ │ │ │ ├── grd_s_o_9.c │ │ │ │ │ └── grd_s_o_9_evw_anime.c │ │ │ │ ├── grd_s_o_i_1 │ │ │ │ │ └── grd_s_o_i_1.c │ │ │ │ ├── grd_s_o_i_2 │ │ │ │ │ ├── grd_s_o_i_2.c │ │ │ │ │ └── grd_s_o_i_2_evw_anime.c │ │ │ │ ├── grd_s_o_r1_1 │ │ │ │ │ ├── grd_s_o_r1_1.c │ │ │ │ │ └── grd_s_o_r1_1_evw_anime.c │ │ │ │ ├── grd_s_o_r1_2 │ │ │ │ │ ├── grd_s_o_r1_2.c │ │ │ │ │ └── grd_s_o_r1_2_evw_anime.c │ │ │ │ ├── grd_s_o_r1_3 │ │ │ │ │ ├── grd_s_o_r1_3.c │ │ │ │ │ └── grd_s_o_r1_3_evw_anime.c │ │ │ │ ├── grd_s_o_r1_4 │ │ │ │ │ ├── grd_s_o_r1_4.c │ │ │ │ │ └── grd_s_o_r1_4_evw_anime.c │ │ │ │ ├── grd_s_o_r1_5 │ │ │ │ │ ├── grd_s_o_r1_5.c │ │ │ │ │ └── grd_s_o_r1_5_evw_anime.c │ │ │ │ ├── grd_s_o_r1_b_1 │ │ │ │ │ ├── grd_s_o_r1_b_1.c │ │ │ │ │ └── grd_s_o_r1_b_1_evw_anime.c │ │ │ │ ├── grd_s_o_r1_b_2 │ │ │ │ │ ├── grd_s_o_r1_b_2.c │ │ │ │ │ └── grd_s_o_r1_b_2_evw_anime.c │ │ │ │ ├── grd_s_o_r1_b_3 │ │ │ │ │ ├── grd_s_o_r1_b_3.c │ │ │ │ │ └── grd_s_o_r1_b_3_evw_anime.c │ │ │ │ ├── grd_s_o_ta_1 │ │ │ │ │ ├── grd_s_o_ta_1.c │ │ │ │ │ └── grd_s_o_ta_1_evw_anime.c │ │ │ │ ├── grd_s_o_ta_2 │ │ │ │ │ ├── grd_s_o_ta_2.c │ │ │ │ │ └── grd_s_o_ta_2_evw_anime.c │ │ │ │ ├── grd_s_o_ta_3 │ │ │ │ │ ├── grd_s_o_ta_3.c │ │ │ │ │ └── grd_s_o_ta_3_evw_anime.c │ │ │ │ ├── grd_s_o_wf_1 │ │ │ │ │ ├── grd_s_o_wf_1.c │ │ │ │ │ └── grd_s_o_wf_1_evw_anime.c │ │ │ │ ├── grd_s_o_wf_2 │ │ │ │ │ ├── grd_s_o_wf_2.c │ │ │ │ │ └── grd_s_o_wf_2_evw_anime.c │ │ │ │ ├── grd_s_o_wf_3 │ │ │ │ │ ├── grd_s_o_wf_3.c │ │ │ │ │ └── grd_s_o_wf_3_evw_anime.c │ │ │ │ ├── grd_s_r1_1 │ │ │ │ │ ├── grd_s_r1_1.c │ │ │ │ │ └── grd_s_r1_1_evw_anime.c │ │ │ │ ├── grd_s_r1_2 │ │ │ │ │ ├── grd_s_r1_2.c │ │ │ │ │ └── grd_s_r1_2_evw_anime.c │ │ │ │ ├── grd_s_r1_3 │ │ │ │ │ ├── grd_s_r1_3.c │ │ │ │ │ └── grd_s_r1_3_evw_anime.c │ │ │ │ ├── grd_s_r1_4 │ │ │ │ │ ├── grd_s_r1_4.c │ │ │ │ │ └── grd_s_r1_4_evw_anime.c │ │ │ │ ├── grd_s_r1_b_1 │ │ │ │ │ ├── grd_s_r1_b_1.c │ │ │ │ │ └── grd_s_r1_b_1_evw_anime.c │ │ │ │ ├── grd_s_r1_b_2 │ │ │ │ │ ├── grd_s_r1_b_2.c │ │ │ │ │ └── grd_s_r1_b_2_evw_anime.c │ │ │ │ ├── grd_s_r1_b_3 │ │ │ │ │ ├── grd_s_r1_b_3.c │ │ │ │ │ └── grd_s_r1_b_3_evw_anime.c │ │ │ │ ├── grd_s_r1_p_1 │ │ │ │ │ ├── grd_s_r1_p_1.c │ │ │ │ │ └── grd_s_r1_p_1_evw_anime.c │ │ │ │ ├── grd_s_r2_1 │ │ │ │ │ ├── grd_s_r2_1.c │ │ │ │ │ └── grd_s_r2_1_evw_anime.c │ │ │ │ ├── grd_s_r2_2 │ │ │ │ │ ├── grd_s_r2_2.c │ │ │ │ │ └── grd_s_r2_2_evw_anime.c │ │ │ │ ├── grd_s_r2_3 │ │ │ │ │ ├── grd_s_r2_3.c │ │ │ │ │ └── grd_s_r2_3_evw_anime.c │ │ │ │ ├── grd_s_r2_4 │ │ │ │ │ ├── grd_s_r2_4.c │ │ │ │ │ └── grd_s_r2_4_evw_anime.c │ │ │ │ ├── grd_s_r2_b_1 │ │ │ │ │ ├── grd_s_r2_b_1.c │ │ │ │ │ └── grd_s_r2_b_1_evw_anime.c │ │ │ │ ├── grd_s_r2_b_2 │ │ │ │ │ ├── grd_s_r2_b_2.c │ │ │ │ │ └── grd_s_r2_b_2_evw_anime.c │ │ │ │ ├── grd_s_r2_b_3 │ │ │ │ │ ├── grd_s_r2_b_3.c │ │ │ │ │ └── grd_s_r2_b_3_evw_anime.c │ │ │ │ ├── grd_s_r2_p_1 │ │ │ │ │ ├── grd_s_r2_p_1.c │ │ │ │ │ └── grd_s_r2_p_1_evw_anime.c │ │ │ │ ├── grd_s_r3_1 │ │ │ │ │ ├── grd_s_r3_1.c │ │ │ │ │ └── grd_s_r3_1_evw_anime.c │ │ │ │ ├── grd_s_r3_2 │ │ │ │ │ ├── grd_s_r3_2.c │ │ │ │ │ └── grd_s_r3_2_evw_anime.c │ │ │ │ ├── grd_s_r3_3 │ │ │ │ │ ├── grd_s_r3_3.c │ │ │ │ │ └── grd_s_r3_3_evw_anime.c │ │ │ │ ├── grd_s_r3_4 │ │ │ │ │ ├── grd_s_r3_4.c │ │ │ │ │ └── grd_s_r3_4_evw_anime.c │ │ │ │ ├── grd_s_r3_b_1 │ │ │ │ │ ├── grd_s_r3_b_1.c │ │ │ │ │ └── grd_s_r3_b_1_evw_anime.c │ │ │ │ ├── grd_s_r3_b_2 │ │ │ │ │ ├── grd_s_r3_b_2.c │ │ │ │ │ └── grd_s_r3_b_2_evw_anime.c │ │ │ │ ├── grd_s_r3_b_3 │ │ │ │ │ ├── grd_s_r3_b_3.c │ │ │ │ │ └── grd_s_r3_b_3_evw_anime.c │ │ │ │ ├── grd_s_r3_p_1 │ │ │ │ │ ├── grd_s_r3_p_1.c │ │ │ │ │ └── grd_s_r3_p_1_evw_anime.c │ │ │ │ ├── grd_s_r4_1 │ │ │ │ │ ├── grd_s_r4_1.c │ │ │ │ │ └── grd_s_r4_1_evw_anime.c │ │ │ │ ├── grd_s_r4_2 │ │ │ │ │ ├── grd_s_r4_2.c │ │ │ │ │ └── grd_s_r4_2_evw_anime.c │ │ │ │ ├── grd_s_r4_3 │ │ │ │ │ ├── grd_s_r4_3.c │ │ │ │ │ └── grd_s_r4_3_evw_anime.c │ │ │ │ ├── grd_s_r4_b_1 │ │ │ │ │ ├── grd_s_r4_b_1.c │ │ │ │ │ └── grd_s_r4_b_1_evw_anime.c │ │ │ │ ├── grd_s_r4_b_2 │ │ │ │ │ ├── grd_s_r4_b_2.c │ │ │ │ │ └── grd_s_r4_b_2_evw_anime.c │ │ │ │ ├── grd_s_r4_p_1 │ │ │ │ │ ├── grd_s_r4_p_1.c │ │ │ │ │ └── grd_s_r4_p_1_evw_anime.c │ │ │ │ ├── grd_s_r5_1 │ │ │ │ │ ├── grd_s_r5_1.c │ │ │ │ │ └── grd_s_r5_1_evw_anime.c │ │ │ │ ├── grd_s_r5_2 │ │ │ │ │ ├── grd_s_r5_2.c │ │ │ │ │ └── grd_s_r5_2_evw_anime.c │ │ │ │ ├── grd_s_r5_3 │ │ │ │ │ ├── grd_s_r5_3.c │ │ │ │ │ └── grd_s_r5_3_evw_anime.c │ │ │ │ ├── grd_s_r5_b_1 │ │ │ │ │ ├── grd_s_r5_b_1.c │ │ │ │ │ └── grd_s_r5_b_1_evw_anime.c │ │ │ │ ├── grd_s_r5_b_2 │ │ │ │ │ ├── grd_s_r5_b_2.c │ │ │ │ │ └── grd_s_r5_b_2_evw_anime.c │ │ │ │ ├── grd_s_r5_p_1 │ │ │ │ │ ├── grd_s_r5_p_1.c │ │ │ │ │ └── grd_s_r5_p_1_evw_anime.c │ │ │ │ ├── grd_s_r6_1 │ │ │ │ │ ├── grd_s_r6_1.c │ │ │ │ │ └── grd_s_r6_1_evw_anime.c │ │ │ │ ├── grd_s_r6_2 │ │ │ │ │ ├── grd_s_r6_2.c │ │ │ │ │ └── grd_s_r6_2_evw_anime.c │ │ │ │ ├── grd_s_r6_3 │ │ │ │ │ ├── grd_s_r6_3.c │ │ │ │ │ └── grd_s_r6_3_evw_anime.c │ │ │ │ ├── grd_s_r6_b_1 │ │ │ │ │ ├── grd_s_r6_b_1.c │ │ │ │ │ └── grd_s_r6_b_1_evw_anime.c │ │ │ │ ├── grd_s_r6_b_2 │ │ │ │ │ ├── grd_s_r6_b_2.c │ │ │ │ │ └── grd_s_r6_b_2_evw_anime.c │ │ │ │ ├── grd_s_r6_p_1 │ │ │ │ │ ├── grd_s_r6_p_1.c │ │ │ │ │ └── grd_s_r6_p_1_evw_anime.c │ │ │ │ ├── grd_s_r7_1 │ │ │ │ │ ├── grd_s_r7_1.c │ │ │ │ │ └── grd_s_r7_1_evw_anime.c │ │ │ │ ├── grd_s_r7_2 │ │ │ │ │ ├── grd_s_r7_2.c │ │ │ │ │ └── grd_s_r7_2_evw_anime.c │ │ │ │ ├── grd_s_r7_3 │ │ │ │ │ ├── grd_s_r7_3.c │ │ │ │ │ └── grd_s_r7_3_evw_anime.c │ │ │ │ ├── grd_s_r7_b_1 │ │ │ │ │ ├── grd_s_r7_b_1.c │ │ │ │ │ └── grd_s_r7_b_1_evw_anime.c │ │ │ │ ├── grd_s_r7_b_2 │ │ │ │ │ ├── grd_s_r7_b_2.c │ │ │ │ │ └── grd_s_r7_b_2_evw_anime.c │ │ │ │ ├── grd_s_r7_p_1 │ │ │ │ │ ├── grd_s_r7_p_1.c │ │ │ │ │ └── grd_s_r7_p_1_evw_anime.c │ │ │ │ ├── grd_s_t_1 │ │ │ │ │ ├── grd_s_t_1.c │ │ │ │ │ └── grd_s_t_1_evw_anime.c │ │ │ │ ├── grd_s_t_10 │ │ │ │ │ └── grd_s_t_10.c │ │ │ │ ├── grd_s_t_2 │ │ │ │ │ └── grd_s_t_2.c │ │ │ │ ├── grd_s_t_3 │ │ │ │ │ └── grd_s_t_3.c │ │ │ │ ├── grd_s_t_4 │ │ │ │ │ ├── grd_s_t_4.c │ │ │ │ │ └── grd_s_t_4_evw_anime.c │ │ │ │ ├── grd_s_t_5 │ │ │ │ │ ├── grd_s_t_5.c │ │ │ │ │ └── grd_s_t_5_evw_anime.c │ │ │ │ ├── grd_s_t_6 │ │ │ │ │ └── grd_s_t_6.c │ │ │ │ ├── grd_s_t_7 │ │ │ │ │ └── grd_s_t_7.c │ │ │ │ ├── grd_s_t_8 │ │ │ │ │ └── grd_s_t_8.c │ │ │ │ ├── grd_s_t_9 │ │ │ │ │ └── grd_s_t_9.c │ │ │ │ ├── grd_s_t_po_1 │ │ │ │ │ └── grd_s_t_po_1.c │ │ │ │ ├── grd_s_t_po_2 │ │ │ │ │ └── grd_s_t_po_2.c │ │ │ │ ├── grd_s_t_po_3 │ │ │ │ │ ├── grd_s_t_po_3.c │ │ │ │ │ └── grd_s_t_po_3_evw_anime.c │ │ │ │ ├── grd_s_t_r1_1 │ │ │ │ │ ├── grd_s_t_r1_1.c │ │ │ │ │ └── grd_s_t_r1_1_evw_anime.c │ │ │ │ ├── grd_s_t_r1_2 │ │ │ │ │ ├── grd_s_t_r1_2.c │ │ │ │ │ └── grd_s_t_r1_2_evw_anime.c │ │ │ │ ├── grd_s_t_r1_3 │ │ │ │ │ ├── grd_s_t_r1_3.c │ │ │ │ │ └── grd_s_t_r1_3_evw_anime.c │ │ │ │ ├── grd_s_t_r1_4 │ │ │ │ │ ├── grd_s_t_r1_4.c │ │ │ │ │ └── grd_s_t_r1_4_evw_anime.c │ │ │ │ ├── grd_s_t_r1_5 │ │ │ │ │ ├── grd_s_t_r1_5.c │ │ │ │ │ └── grd_s_t_r1_5_evw_anime.c │ │ │ │ ├── grd_s_t_sh_1 │ │ │ │ │ └── grd_s_t_sh_1.c │ │ │ │ ├── grd_s_t_sh_2 │ │ │ │ │ ├── grd_s_t_sh_2.c │ │ │ │ │ └── grd_s_t_sh_2_evw_anime.c │ │ │ │ ├── grd_s_t_sh_3 │ │ │ │ │ └── grd_s_t_sh_3.c │ │ │ │ ├── grd_s_t_st1_1 │ │ │ │ │ └── grd_s_t_st1_1.c │ │ │ │ ├── grd_s_t_st1_2 │ │ │ │ │ └── grd_s_t_st1_2.c │ │ │ │ ├── grd_s_t_st1_3 │ │ │ │ │ └── grd_s_t_st1_3.c │ │ │ │ ├── grd_yamishop │ │ │ │ │ └── grd_yamishop.c │ │ │ │ ├── myr_etc │ │ │ │ │ └── myr_etc.c │ │ │ │ ├── police_indoor │ │ │ │ │ └── police_indoor.c │ │ │ │ ├── rom_museum1 │ │ │ │ │ └── rom_museum1.c │ │ │ │ ├── rom_museum2 │ │ │ │ │ └── rom_museum2.c │ │ │ │ ├── rom_museum3 │ │ │ │ │ └── rom_museum3.c │ │ │ │ ├── rom_museum5 │ │ │ │ │ └── rom_museum5.c │ │ │ │ ├── rom_shop4_1 │ │ │ │ │ └── rom_shop4_1.c │ │ │ │ ├── rom_shop4_fuku │ │ │ │ │ └── rom_shop4_fuku.c │ │ │ │ ├── rom_tailor │ │ │ │ │ └── rom_tailor.c │ │ │ │ ├── rom_tent │ │ │ │ │ └── rom_tent.c │ │ │ │ ├── rom_toudai │ │ │ │ │ └── rom_toudai.c │ │ │ │ ├── rom_train_in │ │ │ │ │ └── rom_train_in.c │ │ │ │ ├── rom_uranai │ │ │ │ │ ├── rom_uranai.c │ │ │ │ │ └── rom_uranai_evw_anime.c │ │ │ │ ├── room01 │ │ │ │ │ └── room01.c │ │ │ │ ├── tmp │ │ │ │ │ └── tmp.c │ │ │ │ ├── tmp2 │ │ │ │ │ └── tmp2.c │ │ │ │ ├── tmp3 │ │ │ │ │ └── tmp3.c │ │ │ │ ├── tmp4 │ │ │ │ │ └── tmp4.c │ │ │ │ ├── tmpr │ │ │ │ │ ├── tmpr.c │ │ │ │ │ └── tmpr_evw_anime.c │ │ │ │ ├── tmpr2 │ │ │ │ │ ├── tmpr2.c │ │ │ │ │ └── tmpr2_evw_anime.c │ │ │ │ ├── tmpr3 │ │ │ │ │ ├── tmpr3.c │ │ │ │ │ └── tmpr3_evw_anime.c │ │ │ │ └── tmpr4 │ │ │ │ │ ├── tmpr4.c │ │ │ │ │ └── tmpr4_evw_anime.c │ │ │ ├── beach_pal.c │ │ │ ├── bush_pal.c │ │ │ ├── cliff_pal.c │ │ │ ├── earth_pal.c │ │ │ ├── flower │ │ │ │ ├── obj_flower.c │ │ │ │ └── obj_flower_leaf.c │ │ │ └── rail_pal.c │ │ ├── field_data.c │ │ └── mvactor │ │ │ ├── broker_shop.c │ │ │ ├── buggy.c │ │ │ ├── event_notification.c │ │ │ ├── fd0.c │ │ │ ├── fd1.c │ │ │ ├── fd2.c │ │ │ ├── fd4.c │ │ │ ├── fd_npc_land.c │ │ │ ├── fgout.c │ │ │ ├── kamakura.c │ │ │ ├── npcRoom001.c │ │ │ ├── playerRM.c │ │ │ ├── playerRMM.c │ │ │ ├── playerRMS.c │ │ │ ├── player_select.c │ │ │ ├── player_select2.c │ │ │ ├── player_select3.c │ │ │ ├── player_select4.c │ │ │ ├── police_box.c │ │ │ ├── post_office.c │ │ │ ├── shop01.c │ │ │ ├── shop02.c │ │ │ ├── shop03.c │ │ │ ├── shop04_1.c │ │ │ ├── shop04_2.c │ │ │ ├── start_demo1.c │ │ │ ├── start_demo2.c │ │ │ ├── start_demo3.c │ │ │ ├── tent.c │ │ │ ├── title_demo.c │ │ │ └── water_test.c │ ├── font │ │ ├── FONT_nes_tex_choice.c │ │ ├── FONT_nes_tex_cursor.c │ │ ├── FONT_nes_tex_font1.c │ │ ├── FONT_nes_tex_jyouge.c │ │ ├── FONT_nes_tex_next.c │ │ └── FONT_nes_tex_sayuu.c │ ├── item │ │ ├── binsen_list.c │ │ ├── binsen_price.c │ │ ├── carpet_list.c │ │ ├── carpet_price.c │ │ ├── cloth_list.c │ │ ├── cloth_price.c │ │ ├── diary_price.c │ │ ├── fish_price.c │ │ ├── food_price.c │ │ ├── ftr_list.c │ │ ├── ftr_price.c │ │ ├── insect_price.c │ │ ├── item_name.c │ │ ├── md_price.c │ │ ├── plant_price.c │ │ ├── tool_price.c │ │ ├── wall_list.c │ │ └── wall_price.c │ ├── model │ │ ├── act_ant.c │ │ ├── act_ant_anim.c │ │ ├── act_ball_b.c │ │ ├── act_ball_d.c │ │ ├── act_ball_s.c │ │ ├── act_balloon.c │ │ ├── act_bee.c │ │ ├── act_darumaA.c │ │ ├── act_darumaB.c │ │ ├── act_f01_funa.c │ │ ├── act_f02_hera.c │ │ ├── act_f03_koi.c │ │ ├── act_f04_nisiki.c │ │ ├── act_f05_namazu.c │ │ ├── act_f06_bass.c │ │ ├── act_f07_bassm.c │ │ ├── act_f08_bassl.c │ │ ├── act_f09_gill.c │ │ ├── act_f10_oonamazu.c │ │ ├── act_f11_raigyo.c │ │ ├── act_f12_nigoi.c │ │ ├── act_f13_ugui.c │ │ ├── act_f14_oikawa.c │ │ ├── act_f15_tanago.c │ │ ├── act_f16_dojyo.c │ │ ├── act_f17_wakasagi.c │ │ ├── act_f18_ayu.c │ │ ├── act_f19_yamame.c │ │ ├── act_f20_iwana.c │ │ ├── act_f21_niji.c │ │ ├── act_f22_ito.c │ │ ├── act_f23_sake.c │ │ ├── act_f24_kingyo.c │ │ ├── act_f25_pirania.c │ │ ├── act_f26_aroana.c │ │ ├── act_f27_unagi.c │ │ ├── act_f28_akikan.c │ │ ├── act_f28_donko.c │ │ ├── act_f29_angel.c │ │ ├── act_f30_gupi.c │ │ ├── act_f30_nagagutu.c │ │ ├── act_f31_demekin.c │ │ ├── act_f31_taiya.c │ │ ├── act_f32_kaseki.c │ │ ├── act_f33_medaka.c │ │ ├── act_f34_piraluku.c │ │ ├── act_f35_zarigani.c │ │ ├── act_f36_kaeru.c │ │ ├── act_f37_kurage.c │ │ ├── act_f38_suzuki.c │ │ ├── act_f39_tai.c │ │ ├── act_f40_isidai.c │ │ ├── act_gyoei02.c │ │ ├── act_killer.c │ │ ├── act_m_abura.c │ │ ├── act_m_abura2.c │ │ ├── act_m_akiakane.c │ │ ├── act_m_akiakane2.c │ │ ├── act_m_amenbo.c │ │ ├── act_m_amenbo2.c │ │ ├── act_m_ari.c │ │ ├── act_m_ari2.c │ │ ├── act_m_dango.c │ │ ├── act_m_dango2.c │ │ ├── act_m_danna.c │ │ ├── act_m_danna2.c │ │ ├── act_m_genji.c │ │ ├── act_m_genji2.c │ │ ├── act_m_genji22.c │ │ ├── act_m_ginyanma.c │ │ ├── act_m_ginyanma2.c │ │ ├── act_m_gomadara.c │ │ ├── act_m_gomadara2.c │ │ ├── act_m_hachi.c │ │ ├── act_m_hachi2.c │ │ ├── act_m_higurashi.c │ │ ├── act_m_higurashi2.c │ │ ├── act_m_hirata.c │ │ ├── act_m_hirata2.c │ │ ├── act_m_hirata_b.c │ │ ├── act_m_hitodama.c │ │ ├── act_m_house_goki.c │ │ ├── act_m_ka.c │ │ ├── act_m_ka2.c │ │ ├── act_m_kabuto.c │ │ ├── act_m_kabuto2.c │ │ ├── act_m_kamakiri.c │ │ ├── act_m_kamakiri2.c │ │ ├── act_m_kanabun.c │ │ ├── act_m_kanabun2.c │ │ ├── act_m_kera.c │ │ ├── act_m_kera2.c │ │ ├── act_m_kiageha.c │ │ ├── act_m_kiageha2.c │ │ ├── act_m_kirigirisu.c │ │ ├── act_m_kirigirisu2.c │ │ ├── act_m_koorogi.c │ │ ├── act_m_koorogi2.c │ │ ├── act_m_kumo.c │ │ ├── act_m_kumo2.c │ │ ├── act_m_maimai.c │ │ ├── act_m_maimai2.c │ │ ├── act_m_matmushi.c │ │ ├── act_m_matumushi.c │ │ ├── act_m_minmin.c │ │ ├── act_m_minmin2.c │ │ ├── act_m_mino.c │ │ ├── act_m_mino2.c │ │ ├── act_m_miyama.c │ │ ├── act_m_miyama2.c │ │ ├── act_m_miyama_b.c │ │ ├── act_m_monki.c │ │ ├── act_m_monki2.c │ │ ├── act_m_monshiro.c │ │ ├── act_m_monshiro2.c │ │ ├── act_m_nanahoshi.c │ │ ├── act_m_nanahoshi2.c │ │ ├── act_m_nokogiri.c │ │ ├── act_m_nokogiri2.c │ │ ├── act_m_nokogiri_b.c │ │ ├── act_m_ohmurasaki.c │ │ ├── act_m_ohmurasaki2.c │ │ ├── act_m_okuwa.c │ │ ├── act_m_okuwa2.c │ │ ├── act_m_okuwa_b.c │ │ ├── act_m_oniyanma.c │ │ ├── act_m_oniyanma2.c │ │ ├── act_m_shiokara.c │ │ ├── act_m_shiokara2.c │ │ ├── act_m_suzumushi.c │ │ ├── act_m_suzumushi2.c │ │ ├── act_m_syouryou.c │ │ ├── act_m_syouryou2.c │ │ ├── act_m_tamamushi.c │ │ ├── act_m_tamamushi2.c │ │ ├── act_m_tentou.c │ │ ├── act_m_tentou2.c │ │ ├── act_m_tonosama.c │ │ ├── act_m_tonosama2.c │ │ ├── act_m_tukutuku.c │ │ ├── act_m_tukutuku2.c │ │ ├── act_mus_angel_a1.c │ │ ├── act_mus_aroana_a1.c │ │ ├── act_mus_ayu_a1.c │ │ ├── act_mus_bass_a1.c │ │ ├── act_mus_bassl_a1.c │ │ ├── act_mus_bassm_a1.c │ │ ├── act_mus_demekin_a1.c │ │ ├── act_mus_dojyo_a1.c │ │ ├── act_mus_donko_a1.c │ │ ├── act_mus_funa_a1.c │ │ ├── act_mus_gill_a1.c │ │ ├── act_mus_gupi_a1.c │ │ ├── act_mus_hera_a1.c │ │ ├── act_mus_isidai_a1.c │ │ ├── act_mus_ito_a1.c │ │ ├── act_mus_iwana_a1.c │ │ ├── act_mus_kaeru_a1.c │ │ ├── act_mus_kaseki_a1.c │ │ ├── act_mus_kingyo_a1.c │ │ ├── act_mus_koi_a1.c │ │ ├── act_mus_kurage_a1.c │ │ ├── act_mus_medaka_a1.c │ │ ├── act_mus_namazu_a1.c │ │ ├── act_mus_nigoi_a1.c │ │ ├── act_mus_niji_a1.c │ │ ├── act_mus_nisiki_a1.c │ │ ├── act_mus_oikawa_a1.c │ │ ├── act_mus_onamazu_a1.c │ │ ├── act_mus_pira_a1.c │ │ ├── act_mus_pirania_a1.c │ │ ├── act_mus_raigyo_a1.c │ │ ├── act_mus_sake_a1.c │ │ ├── act_mus_suzuki_a1.c │ │ ├── act_mus_tai_a1.c │ │ ├── act_mus_tanago_a1.c │ │ ├── act_mus_ugui_a1.c │ │ ├── act_mus_unagi_a1.c │ │ ├── act_mus_wakasa_a1.c │ │ ├── act_mus_yamame_a1.c │ │ ├── act_mus_zari.c │ │ ├── agb_yajirushi.c │ │ ├── att_win.c │ │ ├── bir_win.c │ │ ├── boy_model.c │ │ ├── cKF_ba_r_act_m_hirata_b.c │ │ ├── cKF_ba_r_act_m_miyama_b.c │ │ ├── cKF_ba_r_act_m_nokogiri_b.c │ │ ├── cKF_ba_r_act_m_okuwa_b.c │ │ ├── cKF_ba_r_act_mus_angel_a1.c │ │ ├── cKF_ba_r_act_mus_aroana_a1.c │ │ ├── cKF_ba_r_act_mus_ayu_a1.c │ │ ├── cKF_ba_r_act_mus_bass_a1.c │ │ ├── cKF_ba_r_act_mus_bassl_a1.c │ │ ├── cKF_ba_r_act_mus_bassm_a1.c │ │ ├── cKF_ba_r_act_mus_demekin_a1.c │ │ ├── cKF_ba_r_act_mus_dojyo_a1.c │ │ ├── cKF_ba_r_act_mus_donko_a1.c │ │ ├── cKF_ba_r_act_mus_funa_a1.c │ │ ├── cKF_ba_r_act_mus_gill_a1.c │ │ ├── cKF_ba_r_act_mus_gupi_a1.c │ │ ├── cKF_ba_r_act_mus_hera_a1.c │ │ ├── cKF_ba_r_act_mus_isidai_a1.c │ │ ├── cKF_ba_r_act_mus_ito_a1.c │ │ ├── cKF_ba_r_act_mus_iwana_a1.c │ │ ├── cKF_ba_r_act_mus_kaeru_a1.c │ │ ├── cKF_ba_r_act_mus_kaeru_a1_big.c │ │ ├── cKF_ba_r_act_mus_kaseki_a1.c │ │ ├── cKF_ba_r_act_mus_kingyo_a1.c │ │ ├── cKF_ba_r_act_mus_koi_a1.c │ │ ├── cKF_ba_r_act_mus_medaka_a1.c │ │ ├── cKF_ba_r_act_mus_namazu_a1.c │ │ ├── cKF_ba_r_act_mus_nigoi_a1.c │ │ ├── cKF_ba_r_act_mus_niji_a1.c │ │ ├── cKF_ba_r_act_mus_nisiki_a1.c │ │ ├── cKF_ba_r_act_mus_oikawa_a1.c │ │ ├── cKF_ba_r_act_mus_onamazu_a1.c │ │ ├── cKF_ba_r_act_mus_pira_a1.c │ │ ├── cKF_ba_r_act_mus_pirania_a1.c │ │ ├── cKF_ba_r_act_mus_raigyo_a1.c │ │ ├── cKF_ba_r_act_mus_sake_a1.c │ │ ├── cKF_ba_r_act_mus_suzuki_a1.c │ │ ├── cKF_ba_r_act_mus_tai_a1.c │ │ ├── cKF_ba_r_act_mus_tanago_a1.c │ │ ├── cKF_ba_r_act_mus_ugui_a1.c │ │ ├── cKF_ba_r_act_mus_unagi_a2.c │ │ ├── cKF_ba_r_act_mus_wakasa_a1.c │ │ ├── cKF_ba_r_act_mus_yamame_a1.c │ │ ├── cKF_ba_r_act_mus_zari.c │ │ ├── cKF_ba_r_clk_hiniti.c │ │ ├── cKF_ba_r_clk_jikan.c │ │ ├── cKF_ba_r_ef_f_tree3_cutL.c │ │ ├── cKF_ba_r_ef_f_tree3_cutR.c │ │ ├── cKF_ba_r_ef_f_tree3_shake.c │ │ ├── cKF_ba_r_ef_f_tree3_shakeL.c │ │ ├── cKF_ba_r_ef_f_tree3_shakeS.c │ │ ├── cKF_ba_r_ef_f_tree4_cutL.c │ │ ├── cKF_ba_r_ef_f_tree4_cutR.c │ │ ├── cKF_ba_r_ef_f_tree4_shake.c │ │ ├── cKF_ba_r_ef_f_tree4_shakeL.c │ │ ├── cKF_ba_r_ef_f_tree4_shakeS.c │ │ ├── cKF_ba_r_ef_f_tree5_cutL.c │ │ ├── cKF_ba_r_ef_f_tree5_cutR.c │ │ ├── cKF_ba_r_ef_f_tree5_shake.c │ │ ├── cKF_ba_r_ef_f_tree5_shakeL.c │ │ ├── cKF_ba_r_ef_f_tree5_shakeS.c │ │ ├── cKF_ba_r_ef_s_cedar3_cutL.c │ │ ├── cKF_ba_r_ef_s_cedar3_cutR.c │ │ ├── cKF_ba_r_ef_s_cedar3_shake.c │ │ ├── cKF_ba_r_ef_s_cedar3_shakeL.c │ │ ├── cKF_ba_r_ef_s_cedar3_shakeS.c │ │ ├── cKF_ba_r_ef_s_cedar4_cutL.c │ │ ├── cKF_ba_r_ef_s_cedar4_cutR.c │ │ ├── cKF_ba_r_ef_s_cedar4_shake.c │ │ ├── cKF_ba_r_ef_s_cedar4_shakeL.c │ │ ├── cKF_ba_r_ef_s_cedar4_shakeS.c │ │ ├── cKF_ba_r_ef_s_cedar5_cutL.c │ │ ├── cKF_ba_r_ef_s_cedar5_cutR.c │ │ ├── cKF_ba_r_ef_s_cedar5_shake.c │ │ ├── cKF_ba_r_ef_s_cedar5_shakeL.c │ │ ├── cKF_ba_r_ef_s_cedar5_shakeS.c │ │ ├── cKF_ba_r_ef_s_palm3_cutL.c │ │ ├── cKF_ba_r_ef_s_palm3_cutR.c │ │ ├── cKF_ba_r_ef_s_palm3_shake.c │ │ ├── cKF_ba_r_ef_s_palm3_shakeL.c │ │ ├── cKF_ba_r_ef_s_palm3_shakeS.c │ │ ├── cKF_ba_r_ef_s_palm4_cutL.c │ │ ├── cKF_ba_r_ef_s_palm4_cutR.c │ │ ├── cKF_ba_r_ef_s_palm4_shake.c │ │ ├── cKF_ba_r_ef_s_palm4_shakeL.c │ │ ├── cKF_ba_r_ef_s_palm4_shakeS.c │ │ ├── cKF_ba_r_ef_s_palm5_cutL.c │ │ ├── cKF_ba_r_ef_s_palm5_cutR.c │ │ ├── cKF_ba_r_ef_s_palm5_shake.c │ │ ├── cKF_ba_r_ef_s_palm5_shakeL.c │ │ ├── cKF_ba_r_ef_s_palm5_shakeS.c │ │ ├── cKF_ba_r_ef_s_tree3_cutL.c │ │ ├── cKF_ba_r_ef_s_tree3_cutR.c │ │ ├── cKF_ba_r_ef_s_tree3_shake.c │ │ ├── cKF_ba_r_ef_s_tree3_shakeL.c │ │ ├── cKF_ba_r_ef_s_tree3_shakeS.c │ │ ├── cKF_ba_r_ef_s_tree4_cutL.c │ │ ├── cKF_ba_r_ef_s_tree4_cutR.c │ │ ├── cKF_ba_r_ef_s_tree4_shake.c │ │ ├── cKF_ba_r_ef_s_tree4_shakeL.c │ │ ├── cKF_ba_r_ef_s_tree4_shakeS.c │ │ ├── cKF_ba_r_ef_s_tree5_cutL.c │ │ ├── cKF_ba_r_ef_s_tree5_cutR.c │ │ ├── cKF_ba_r_ef_s_tree5_shake.c │ │ ├── cKF_ba_r_ef_s_tree5_shakeL.c │ │ ├── cKF_ba_r_ef_s_tree5_shakeS.c │ │ ├── cKF_ba_r_ef_w_cedar3_cutL.c │ │ ├── cKF_ba_r_ef_w_cedar3_cutR.c │ │ ├── cKF_ba_r_ef_w_cedar3_shake.c │ │ ├── cKF_ba_r_ef_w_cedar3_shakeL.c │ │ ├── cKF_ba_r_ef_w_cedar3_shakeS.c │ │ ├── cKF_ba_r_ef_w_cedar4_cutL.c │ │ ├── cKF_ba_r_ef_w_cedar4_cutR.c │ │ ├── cKF_ba_r_ef_w_cedar4_shake.c │ │ ├── cKF_ba_r_ef_w_cedar4_shakeL.c │ │ ├── cKF_ba_r_ef_w_cedar4_shakeS.c │ │ ├── cKF_ba_r_ef_w_palm3_cutL.c │ │ ├── cKF_ba_r_ef_w_palm3_cutR.c │ │ ├── cKF_ba_r_ef_w_palm3_shake.c │ │ ├── cKF_ba_r_ef_w_palm3_shakeL.c │ │ ├── cKF_ba_r_ef_w_palm3_shakeS.c │ │ ├── cKF_ba_r_ef_w_palm4_cutL.c │ │ ├── cKF_ba_r_ef_w_palm4_cutR.c │ │ ├── cKF_ba_r_ef_w_palm4_shake.c │ │ ├── cKF_ba_r_ef_w_palm4_shakeL.c │ │ ├── cKF_ba_r_ef_w_palm4_shakeS.c │ │ ├── cKF_ba_r_ef_w_palm5_cutL.c │ │ ├── cKF_ba_r_ef_w_palm5_cutR.c │ │ ├── cKF_ba_r_ef_w_palm5_shake.c │ │ ├── cKF_ba_r_ef_w_palm5_shakeL.c │ │ ├── cKF_ba_r_ef_w_palm5_shakeS.c │ │ ├── cKF_ba_r_ef_w_tree3_cutL.c │ │ ├── cKF_ba_r_ef_w_tree3_cutR.c │ │ ├── cKF_ba_r_ef_w_tree3_shake.c │ │ ├── cKF_ba_r_ef_w_tree3_shakeL.c │ │ ├── cKF_ba_r_ef_w_tree3_shakeS.c │ │ ├── cKF_ba_r_ef_w_tree4_cutL.c │ │ ├── cKF_ba_r_ef_w_tree4_cutR.c │ │ ├── cKF_ba_r_ef_w_tree4_shake.c │ │ ├── cKF_ba_r_ef_w_tree4_shakeL.c │ │ ├── cKF_ba_r_ef_w_tree4_shakeS.c │ │ ├── cKF_ba_r_ef_x_cedar5_cutL.c │ │ ├── cKF_ba_r_ef_x_cedar5_cutR.c │ │ ├── cKF_ba_r_ef_x_cedar5_shake.c │ │ ├── cKF_ba_r_ef_x_cedar5_shakeL.c │ │ ├── cKF_ba_r_ef_x_cedar5_shakeS.c │ │ ├── cKF_ba_r_ef_x_tree5_cutL.c │ │ ├── cKF_ba_r_ef_x_tree5_cutR.c │ │ ├── cKF_ba_r_ef_x_tree5_shake.c │ │ ├── cKF_ba_r_ef_x_tree5_shakeL.c │ │ ├── cKF_ba_r_ef_x_tree5_shakeS.c │ │ ├── cKF_ba_r_logo_us_animal.c │ │ ├── cKF_ba_r_logo_us_cros.c │ │ ├── cKF_ba_r_logo_us_sing.c │ │ ├── cKF_ba_r_obj_museum5_hasu.c │ │ ├── cKF_ba_r_obj_museum5_kusa1.c │ │ ├── cKF_ba_r_obj_museum5_kusa2.c │ │ ├── cKF_ba_r_obj_museum5_kusa3.c │ │ ├── cKF_ba_r_obj_romtrain_door.c │ │ ├── cKF_ba_r_tol_keitai_1_keitai_off1.c │ │ ├── cKF_ba_r_tol_keitai_1_keitai_on1.c │ │ ├── cKF_bs_r_hnd.c │ │ ├── cad_win.c │ │ ├── cal_hyouji.c │ │ ├── cal_hyouji2.c │ │ ├── cal_icon1.c │ │ ├── cal_icon2.c │ │ ├── cal_icon3.c │ │ ├── cal_nen.c │ │ ├── cal_win.c │ │ ├── cal_win_tuki.c │ │ ├── cam_win.c │ │ ├── clg_floor2.c │ │ ├── clg_hoshi.c │ │ ├── clg_hyouji.c │ │ ├── clg_music.c │ │ ├── clg_shirushi.c │ │ ├── clg_tagu.c │ │ ├── clg_win1.c │ │ ├── clk_hiniti.c │ │ ├── clk_jikan.c │ │ ├── clk_win.c │ │ ├── crw_anrium1.c │ │ ├── crw_bag1.c │ │ ├── crw_bag2.c │ │ ├── crw_biscus1.c │ │ ├── crw_biscus2.c │ │ ├── crw_biscus3.c │ │ ├── crw_biscus4.c │ │ ├── crw_cobra.c │ │ ├── crw_hasu1.c │ │ ├── crw_hat1.c │ │ ├── crw_hat2.c │ │ ├── crw_hat3.c │ │ ├── crw_rei1.c │ │ ├── crw_rei2.c │ │ ├── crw_zinnia1.c │ │ ├── crw_zinnia2.c │ │ ├── ctl_sentaku.c │ │ ├── ctl_win1.c │ │ ├── darrow.c │ │ ├── des_cursor.c │ │ ├── des_cursor2.c │ │ ├── des_marking.c │ │ ├── des_sen.c │ │ ├── des_suuji.c │ │ ├── des_tool.c │ │ ├── des_tool2.c │ │ ├── des_win.c │ │ ├── dia_att.c │ │ ├── dia_hyouji.c │ │ ├── dia_win.c │ │ ├── dia_win2.c │ │ ├── dia_win3.c │ │ ├── dna_win.c │ │ ├── ef_ame02_00.c │ │ ├── ef_amimizu01_00.c │ │ ├── ef_anahikari01_01.c │ │ ├── ef_anahori01_00.c │ │ ├── ef_ase01_00.c │ │ ├── ef_ase02_00.c │ │ ├── ef_axe1.c │ │ ├── ef_bodyprint01_00.c │ │ ├── ef_buruburu01_00.c │ │ ├── ef_car01.c │ │ ├── ef_circle_light.c │ │ ├── ef_coin.c │ │ ├── ef_daruma01_00.c │ │ ├── ef_doyon01_00.c │ │ ├── ef_dust01_00.c │ │ ├── ef_f_tree.c │ │ ├── ef_f_tree3_cutL.c │ │ ├── ef_f_tree3_cutR.c │ │ ├── ef_f_tree3_shake.c │ │ ├── ef_f_tree4_cutL.c │ │ ├── ef_f_tree4_cutR.c │ │ ├── ef_f_tree4_shake.c │ │ ├── ef_f_tree5_cutL.c │ │ ├── ef_f_tree5_cutR.c │ │ ├── ef_f_tree5_shake.c │ │ ├── ef_gimonhu01_00.c │ │ ├── ef_goki01_01.c │ │ ├── ef_ha01_00.c │ │ ├── ef_hana01_tu_a.c │ │ ├── ef_hanabi_b_00.c │ │ ├── ef_hanabi_h_00.c │ │ ├── ef_hanabi_y_00.c │ │ ├── ef_hanabira01_00.c │ │ ├── ef_hirameki01_den.c │ │ ├── ef_kamihubuki01_00.c │ │ ├── ef_kantanhu01_00.c │ │ ├── ef_kaze01.c │ │ ├── ef_kikuzu01_00.c │ │ ├── ef_kisha_kemuri01_00.c │ │ ├── ef_koke_suiteki01_00.c │ │ ├── ef_koke_yuki01_00.c │ │ ├── ef_kore.c │ │ ├── ef_lovelove01_00.c │ │ ├── ef_lovelove02_00.c │ │ ├── ef_moon01_00.c │ │ ├── ef_moon01_01.c │ │ ├── ef_motiyuge01_00.c │ │ ├── ef_muka01_00.c │ │ ├── ef_museum5_awa1.c │ │ ├── ef_nagare01.c │ │ ├── ef_namida01.c │ │ ├── ef_neboke_awa01.c │ │ ├── ef_ongen.c │ │ ├── ef_onpu01_00.c │ │ ├── ef_otiba.c │ │ ├── ef_otikomi_us2.c │ │ ├── ef_peke01_00.c │ │ ├── ef_pun01_00.c │ │ ├── ef_pun01_01.c │ │ ├── ef_reset_hole.c │ │ ├── ef_s_cedar.c │ │ ├── ef_s_cedar3_cutL.c │ │ ├── ef_s_cedar3_cutR.c │ │ ├── ef_s_cedar3_shake.c │ │ ├── ef_s_cedar4_cutL.c │ │ ├── ef_s_cedar4_cutR.c │ │ ├── ef_s_cedar4_shake.c │ │ ├── ef_s_cedar5_cutL.c │ │ ├── ef_s_cedar5_cutR.c │ │ ├── ef_s_cedar5_shake.c │ │ ├── ef_s_palm.c │ │ ├── ef_s_palm3_cutL.c │ │ ├── ef_s_palm3_cutR.c │ │ ├── ef_s_palm3_shake.c │ │ ├── ef_s_palm4_cutL.c │ │ ├── ef_s_palm4_cutR.c │ │ ├── ef_s_palm4_shake.c │ │ ├── ef_s_palm5_cutL.c │ │ ├── ef_s_palm5_cutR.c │ │ ├── ef_s_palm5_shake.c │ │ ├── ef_s_tree.c │ │ ├── ef_s_tree3_cutL.c │ │ ├── ef_s_tree3_cutR.c │ │ ├── ef_s_tree3_shake.c │ │ ├── ef_s_tree4_cutL.c │ │ ├── ef_s_tree4_cutR.c │ │ ├── ef_s_tree4_shake.c │ │ ├── ef_s_tree5_cutL.c │ │ ├── ef_s_tree5_cutR.c │ │ ├── ef_s_tree5_shake.c │ │ ├── ef_s_yabu01_00.c │ │ ├── ef_s_youngtree_00.c │ │ ├── ef_shadow_in.c │ │ ├── ef_shadow_in2.c │ │ ├── ef_shadow_out.c │ │ ├── ef_shock01_00.c │ │ ├── ef_siawase01_00.c │ │ ├── ef_sibuki01_00.c │ │ ├── ef_situren01_00.c │ │ ├── ef_sleep01.c │ │ ├── ef_sphere_light.c │ │ ├── ef_star01_00.c │ │ ├── ef_taberu01_00.c │ │ ├── ef_takurami01_yoko.c │ │ ├── ef_tamaire01_r.c │ │ ├── ef_tamaire01_r2.c │ │ ├── ef_think_l.c │ │ ├── ef_think_s.c │ │ ├── ef_turi_hamon01_00.c │ │ ├── ef_turi_hane01_00.c │ │ ├── ef_turi_hane02_00.c │ │ ├── ef_turi_suiteki01_00.c │ │ ├── ef_uranai01_00.c │ │ ├── ef_w_cedar.c │ │ ├── ef_w_cedar3_cutL.c │ │ ├── ef_w_cedar3_cutR.c │ │ ├── ef_w_cedar3_shake.c │ │ ├── ef_w_cedar4_cutL.c │ │ ├── ef_w_cedar4_cutR.c │ │ ├── ef_w_cedar4_shake.c │ │ ├── ef_w_palm.c │ │ ├── ef_w_palm3_cutL.c │ │ ├── ef_w_palm3_cutR.c │ │ ├── ef_w_palm3_shake.c │ │ ├── ef_w_palm4_cutL.c │ │ ├── ef_w_palm4_cutR.c │ │ ├── ef_w_palm4_shake.c │ │ ├── ef_w_palm5_cutL.c │ │ ├── ef_w_palm5_cutR.c │ │ ├── ef_w_palm5_shake.c │ │ ├── ef_w_tree.c │ │ ├── ef_w_tree3_cutL.c │ │ ├── ef_w_tree3_cutR.c │ │ ├── ef_w_tree3_shake.c │ │ ├── ef_w_tree4_cutL.c │ │ ├── ef_w_tree4_cutR.c │ │ ├── ef_w_tree4_shake.c │ │ ├── ef_warau01_00.c │ │ ├── ef_wipe1.c │ │ ├── ef_wipe2.c │ │ ├── ef_wipe3.c │ │ ├── ef_x_cedar5_cutL.c │ │ ├── ef_x_cedar5_cutR.c │ │ ├── ef_x_cedar5_shake.c │ │ ├── ef_x_tree5_cutL.c │ │ ├── ef_x_tree5_cutR.c │ │ ├── ef_x_tree5_shake.c │ │ ├── ef_yuki01_00.c │ │ ├── ef_yukihane01_00.c │ │ ├── f_honeycomb.c │ │ ├── f_tree.c │ │ ├── f_tree1.c │ │ ├── f_tree2.c │ │ ├── f_tree3.c │ │ ├── f_tree4.c │ │ ├── f_tree5.c │ │ ├── fki_win.c │ │ ├── fkm_win.c │ │ ├── furniture_pull.c │ │ ├── furniture_push.c │ │ ├── furniture_stop.c │ │ ├── gba_win.c │ │ ├── girl_model.c │ │ ├── glider.c │ │ ├── hni_den.c │ │ ├── hni_win.c │ │ ├── hnw_face.c │ │ ├── hnw_model.c │ │ ├── hnw_move.c │ │ ├── int_ari_isu01.c │ │ ├── int_ari_kitchen01.c │ │ ├── int_ari_reizou01.c │ │ ├── int_ari_table01.c │ │ ├── int_din_amber.c │ │ ├── int_din_ammonite.c │ │ ├── int_din_bront_body.c │ │ ├── int_din_bront_dummy.c │ │ ├── int_din_bront_head.c │ │ ├── int_din_bront_tail.c │ │ ├── int_din_dummy.c │ │ ├── int_din_egg.c │ │ ├── int_din_hutaba_body.c │ │ ├── int_din_hutaba_dummy.c │ │ ├── int_din_hutaba_head.c │ │ ├── int_din_hutaba_neck.c │ │ ├── int_din_mammoth_body.c │ │ ├── int_din_mammoth_dummy.c │ │ ├── int_din_mammoth_head.c │ │ ├── int_din_ptera_Lwing.c │ │ ├── int_din_ptera_Rwing.c │ │ ├── int_din_ptera_dummy.c │ │ ├── int_din_ptera_head.c │ │ ├── int_din_stego_body.c │ │ ├── int_din_stego_dummyA.c │ │ ├── int_din_stego_dummyB.c │ │ ├── int_din_stego_head.c │ │ ├── int_din_stego_tail.c │ │ ├── int_din_stump.c │ │ ├── int_din_trex_body.c │ │ ├── int_din_trex_dummy.c │ │ ├── int_din_trex_head.c │ │ ├── int_din_trex_tail.c │ │ ├── int_din_trikera_body.c │ │ ├── int_din_trikera_dummy.c │ │ ├── int_din_trikera_head.c │ │ ├── int_din_trikera_tail.c │ │ ├── int_din_trilobite.c │ │ ├── int_dummy.c │ │ ├── int_hnw001.c │ │ ├── int_hnw002.c │ │ ├── int_hnw003.c │ │ ├── int_hnw004.c │ │ ├── int_hnw005.c │ │ ├── int_hnw006.c │ │ ├── int_hnw007.c │ │ ├── int_hnw008.c │ │ ├── int_hnw009.c │ │ ├── int_hnw010.c │ │ ├── int_hnw011.c │ │ ├── int_hnw012.c │ │ ├── int_hnw013.c │ │ ├── int_hnw014.c │ │ ├── int_hnw015.c │ │ ├── int_hnw016.c │ │ ├── int_hnw017.c │ │ ├── int_hnw018.c │ │ ├── int_hnw019.c │ │ ├── int_hnw020.c │ │ ├── int_hnw021.c │ │ ├── int_hnw022.c │ │ ├── int_hnw023.c │ │ ├── int_hnw024.c │ │ ├── int_hnw025.c │ │ ├── int_hnw026.c │ │ ├── int_hnw027.c │ │ ├── int_hnw028.c │ │ ├── int_hnw029.c │ │ ├── int_hnw030.c │ │ ├── int_hnw031.c │ │ ├── int_hnw032.c │ │ ├── int_hnw033.c │ │ ├── int_hnw034.c │ │ ├── int_hnw035.c │ │ ├── int_hnw036.c │ │ ├── int_hnw037.c │ │ ├── int_hnw038.c │ │ ├── int_hnw039.c │ │ ├── int_hnw040.c │ │ ├── int_hnw041.c │ │ ├── int_hnw042.c │ │ ├── int_hnw043.c │ │ ├── int_hnw044.c │ │ ├── int_hnw045.c │ │ ├── int_hnw046.c │ │ ├── int_hnw047.c │ │ ├── int_hnw048.c │ │ ├── int_hnw049.c │ │ ├── int_hnw050.c │ │ ├── int_hnw051.c │ │ ├── int_hnw052.c │ │ ├── int_hnw053.c │ │ ├── int_hnw054.c │ │ ├── int_hnw055.c │ │ ├── int_hnw056.c │ │ ├── int_hnw057.c │ │ ├── int_hnw058.c │ │ ├── int_hnw059.c │ │ ├── int_hnw060.c │ │ ├── int_hnw061.c │ │ ├── int_hnw062.c │ │ ├── int_hnw063.c │ │ ├── int_hnw064.c │ │ ├── int_hnw065.c │ │ ├── int_hnw066.c │ │ ├── int_hnw067.c │ │ ├── int_hnw068.c │ │ ├── int_hnw069.c │ │ ├── int_hnw070.c │ │ ├── int_hnw071.c │ │ ├── int_hnw072.c │ │ ├── int_hnw073.c │ │ ├── int_hnw074.c │ │ ├── int_hnw075.c │ │ ├── int_hnw076.c │ │ ├── int_hnw077.c │ │ ├── int_hnw078.c │ │ ├── int_hnw079.c │ │ ├── int_hnw080.c │ │ ├── int_hnw081.c │ │ ├── int_hnw082.c │ │ ├── int_hnw083.c │ │ ├── int_hnw084.c │ │ ├── int_hnw085.c │ │ ├── int_hnw086.c │ │ ├── int_hnw087.c │ │ ├── int_hnw088.c │ │ ├── int_hnw089.c │ │ ├── int_hnw090.c │ │ ├── int_hnw091.c │ │ ├── int_hnw092.c │ │ ├── int_hnw093.c │ │ ├── int_hnw094.c │ │ ├── int_hnw095.c │ │ ├── int_hnw096.c │ │ ├── int_hnw097.c │ │ ├── int_hnw098.c │ │ ├── int_hnw099.c │ │ ├── int_hnw100.c │ │ ├── int_hnw101.c │ │ ├── int_hnw102.c │ │ ├── int_hnw103.c │ │ ├── int_hnw104.c │ │ ├── int_hnw105.c │ │ ├── int_hnw106.c │ │ ├── int_hnw107.c │ │ ├── int_hnw108.c │ │ ├── int_hnw109.c │ │ ├── int_hnw110.c │ │ ├── int_hnw111.c │ │ ├── int_hnw112.c │ │ ├── int_hnw113.c │ │ ├── int_hnw114.c │ │ ├── int_hnw115.c │ │ ├── int_hnw116.c │ │ ├── int_hnw117.c │ │ ├── int_hnw118.c │ │ ├── int_hnw119.c │ │ ├── int_hnw120.c │ │ ├── int_hnw121.c │ │ ├── int_hnw122.c │ │ ├── int_hnw123.c │ │ ├── int_hnw124.c │ │ ├── int_hnw125.c │ │ ├── int_hnw126.c │ │ ├── int_hnw127.c │ │ ├── int_hos_Tdesk.c │ │ ├── int_hos_deskL.c │ │ ├── int_hos_deskR.c │ │ ├── int_hos_flip.c │ │ ├── int_hos_mario_hata.c │ │ ├── int_hos_mario_kinoko.c │ │ ├── int_hos_piknic.c │ │ ├── int_hos_turkey_sofa.c │ │ ├── int_iid_benti.c │ │ ├── int_iid_diary.c │ │ ├── int_iid_funediary.c │ │ ├── int_iid_mdiary.c │ │ ├── int_iid_newdiary.c │ │ ├── int_iid_ningyou.c │ │ ├── int_iid_snow.c │ │ ├── int_iid_surf.c │ │ ├── int_iid_yuki.c │ │ ├── int_ike_art_ang.c │ │ ├── int_ike_art_fel.c │ │ ├── int_ike_art_sya.c │ │ ├── int_ike_island_hako01.c │ │ ├── int_ike_island_sensui01.c │ │ ├── int_ike_island_uku01.c │ │ ├── int_ike_jny_afmen01.c │ │ ├── int_ike_jny_botle01.c │ │ ├── int_ike_jny_gate01.c │ │ ├── int_ike_jny_gojyu01.c │ │ ├── int_ike_jny_hariko01.c │ │ ├── int_ike_jny_houi01.c │ │ ├── int_ike_jny_kibori01.c │ │ ├── int_ike_jny_makada01.c │ │ ├── int_ike_jny_moai01.c │ │ ├── int_ike_jny_ningyo01.c │ │ ├── int_ike_jny_pisa01.c │ │ ├── int_ike_jny_rosia01.c │ │ ├── int_ike_jny_sirser01.c │ │ ├── int_ike_jny_sirser201.c │ │ ├── int_ike_jny_syon01.c │ │ ├── int_ike_jny_tower01.c │ │ ├── int_ike_jny_truth01.c │ │ ├── int_ike_jpn_tansu01.c │ │ ├── int_ike_k_count01.c │ │ ├── int_ike_k_iveboy01.c │ │ ├── int_ike_k_kid01.c │ │ ├── int_ike_k_kid02.c │ │ ├── int_ike_k_mame01.c │ │ ├── int_ike_k_otome01.c │ │ ├── int_ike_k_sinnen01.c │ │ ├── int_ike_k_sum01.c │ │ ├── int_ike_k_tanabata01.c │ │ ├── int_ike_k_turis01.c │ │ ├── int_ike_kama_danro01.c │ │ ├── int_ike_nikki_fan1.c │ │ ├── int_ike_nikki_fan2.c │ │ ├── int_ike_nikki_fan3.c │ │ ├── int_ike_nikki_fan4.c │ │ ├── int_ike_nikki_fan5.c │ │ ├── int_ike_nikki_wafu1.c │ │ ├── int_ike_prores_bench01.c │ │ ├── int_ike_prores_fense01.c │ │ ├── int_ike_prores_ling01.c │ │ ├── int_ike_prores_ling02.c │ │ ├── int_ike_prores_ling03.c │ │ ├── int_ike_prores_mat01.c │ │ ├── int_ike_prores_punch01.c │ │ ├── int_ike_prores_sandbag01.c │ │ ├── int_ike_prores_table01.c │ │ ├── int_ike_pst_pig01.c │ │ ├── int_ike_pst_tesyu01.c │ │ ├── int_ike_tent_bike01.c │ │ ├── int_ike_tent_fire01.c │ │ ├── int_ike_tent_fire02.c │ │ ├── int_ike_tent_kayak01.c │ │ ├── int_ike_tent_knap01.c │ │ ├── int_ike_tent_sleepbag01.c │ │ ├── int_iku_bugzapper.c │ │ ├── int_iku_busstop.c │ │ ├── int_iku_candy.c │ │ ├── int_iku_cement.c │ │ ├── int_iku_chair.c │ │ ├── int_iku_cocoa.c │ │ ├── int_iku_cow.c │ │ ├── int_iku_denko.c │ │ ├── int_iku_flagman.c │ │ ├── int_iku_flip_top.c │ │ ├── int_iku_gold_green.c │ │ ├── int_iku_gold_red.c │ │ ├── int_iku_ham.c │ │ ├── int_iku_hazardous.c │ │ ├── int_iku_ido.c │ │ ├── int_iku_jack.c │ │ ├── int_iku_jersey.c │ │ ├── int_iku_mario_coin.c │ │ ├── int_iku_mario_dokan.c │ │ ├── int_iku_mario_hatena.c │ │ ├── int_iku_mario_koura.c │ │ ├── int_iku_mario_renga.c │ │ ├── int_iku_mario_star.c │ │ ├── int_iku_mario_taihou.c │ │ ├── int_iku_orange.c │ │ ├── int_iku_reducespeed.c │ │ ├── int_iku_roller.c │ │ ├── int_iku_saku_a.c │ │ ├── int_iku_saku_b.c │ │ ├── int_iku_sawhorsev.c │ │ ├── int_iku_slip.c │ │ ├── int_iku_tumble.c │ │ ├── int_iku_turkey_TV.c │ │ ├── int_iku_turkey_bed.c │ │ ├── int_iku_turkey_lamp.c │ │ ├── int_iku_turkey_table.c │ │ ├── int_iku_ukai.c │ │ ├── int_iku_work.c │ │ ├── int_kob_getabako1.c │ │ ├── int_kob_getabako2.c │ │ ├── int_kob_jimudesk.c │ │ ├── int_kob_jimuisu.c │ │ ├── int_kob_locker1.c │ │ ├── int_kob_mastersword.c │ │ ├── int_kob_ncube.c │ │ ├── int_kob_pipeisu.c │ │ ├── int_kob_rika_desk.c │ │ ├── int_kob_tobibako.c │ │ ├── int_kon_ameclock.c │ │ ├── int_kon_atqclock.c │ │ ├── int_kon_blueclock.c │ │ ├── int_kon_cracker.c │ │ ├── int_kon_gomi03.c │ │ ├── int_kon_gomi04.c │ │ ├── int_kon_grclock.c │ │ ├── int_kon_isi01.c │ │ ├── int_kon_isi02.c │ │ ├── int_kon_isi03.c │ │ ├── int_kon_isi04.c │ │ ├── int_kon_isi05.c │ │ ├── int_kon_isi06.c │ │ ├── int_kon_jihanki02.c │ │ ├── int_kon_jihanki03.c │ │ ├── int_kon_mimiclock.c │ │ ├── int_kon_musya.c │ │ ├── int_kon_pound.c │ │ ├── int_kon_redclock.c │ │ ├── int_kon_sisiodosi.c │ │ ├── int_kon_snowbed.c │ │ ├── int_kon_snowbox.c │ │ ├── int_kon_snowclock.c │ │ ├── int_kon_snowfreezer.c │ │ ├── int_kon_snowsofa.c │ │ ├── int_kon_snowtable.c │ │ ├── int_kon_snowtansu.c │ │ ├── int_kon_snowtv.c │ │ ├── int_kon_taiju.c │ │ ├── int_kon_tubo.c │ │ ├── int_kon_tubo2.c │ │ ├── int_kon_tubo3.c │ │ ├── int_kon_tukue.c │ │ ├── int_kon_waclock.c │ │ ├── int_kon_xtree02.c │ │ ├── int_nog_amenbo.c │ │ ├── int_nog_ari.c │ │ ├── int_nog_balloon1.c │ │ ├── int_nog_balloon2.c │ │ ├── int_nog_balloon3.c │ │ ├── int_nog_balloon4.c │ │ ├── int_nog_balloon5.c │ │ ├── int_nog_balloon6.c │ │ ├── int_nog_balloon7.c │ │ ├── int_nog_balloon8.c │ │ ├── int_nog_beachbed.c │ │ ├── int_nog_beachtable.c │ │ ├── int_nog_bishopB.c │ │ ├── int_nog_bishopW.c │ │ ├── int_nog_burner.c │ │ ├── int_nog_collegenote.c │ │ ├── int_nog_cornucopia.c │ │ ├── int_nog_cosmos.c │ │ ├── int_nog_dango.c │ │ ├── int_nog_dump.c │ │ ├── int_nog_earth.c │ │ ├── int_nog_f_tree.c │ │ ├── int_nog_fan.c │ │ ├── int_nog_flat.c │ │ ├── int_nog_gong.c │ │ ├── int_nog_harddiary.c │ │ ├── int_nog_isidai.c │ │ ├── int_nog_ka.c │ │ ├── int_nog_kaeru.c │ │ ├── int_nog_kamakura.c │ │ ├── int_nog_kera.c │ │ ├── int_nog_kingB.c │ │ ├── int_nog_kingW.c │ │ ├── int_nog_knightB.c │ │ ├── int_nog_knightW.c │ │ ├── int_nog_koban.c │ │ ├── int_nog_kumo.c │ │ ├── int_nog_kurage.c │ │ ├── int_nog_lawnmower.c │ │ ├── int_nog_maimai.c │ │ ├── int_nog_medaka.c │ │ ├── int_nog_mikanbox.c │ │ ├── int_nog_mino.c │ │ ├── int_nog_museum.c │ │ ├── int_nog_myhome2.c │ │ ├── int_nog_myhome4.c │ │ ├── int_nog_nabe.c │ │ ├── int_nog_pansy.c │ │ ├── int_nog_pawnB.c │ │ ├── int_nog_pawnW.c │ │ ├── int_nog_piraluku.c │ │ ├── int_nog_queenB.c │ │ ├── int_nog_queenW.c │ │ ├── int_nog_rail.c │ │ ├── int_nog_rookB.c │ │ ├── int_nog_rookW.c │ │ ├── int_nog_s_tree.c │ │ ├── int_nog_schoolnote.c │ │ ├── int_nog_shop1.c │ │ ├── int_nog_shrine.c │ │ ├── int_nog_snowman.c │ │ ├── int_nog_sprinkler.c │ │ ├── int_nog_station1.c │ │ ├── int_nog_station2.c │ │ ├── int_nog_station3.c │ │ ├── int_nog_suzuki.c │ │ ├── int_nog_systemnote.c │ │ ├── int_nog_tai.c │ │ ├── int_nog_tri_audio01.c │ │ ├── int_nog_tri_bed01.c │ │ ├── int_nog_tri_chair01.c │ │ ├── int_nog_tri_chest01.c │ │ ├── int_nog_tri_chest02.c │ │ ├── int_nog_tri_chest03.c │ │ ├── int_nog_tri_clock01.c │ │ ├── int_nog_tri_rack01.c │ │ ├── int_nog_tri_sofa01.c │ │ ├── int_nog_tri_table01.c │ │ ├── int_nog_tudurinote.c │ │ ├── int_nog_turip.c │ │ ├── int_nog_uranai.c │ │ ├── int_nog_w_tree.c │ │ ├── int_nog_xtree.c │ │ ├── int_nog_yamishop.c │ │ ├── int_nog_yubin.c │ │ ├── int_nog_zarigani.c │ │ ├── int_nog_zassou.c │ │ ├── int_sugi_alchair.c │ │ ├── int_sugi_barbecue.c │ │ ├── int_sugi_chesstable.c │ │ ├── int_sugi_kpool.c │ │ ├── int_sugi_kpool_evw_anime.c │ │ ├── int_sugi_radiator.c │ │ ├── int_sugi_torch.c │ │ ├── int_sum_abura.c │ │ ├── int_sum_akiakane.c │ │ ├── int_sum_angel.c │ │ ├── int_sum_aroana.c │ │ ├── int_sum_art01.c │ │ ├── int_sum_art04.c │ │ ├── int_sum_art05.c │ │ ├── int_sum_art06.c │ │ ├── int_sum_art08.c │ │ ├── int_sum_art09.c │ │ ├── int_sum_art10.c │ │ ├── int_sum_art11.c │ │ ├── int_sum_art12.c │ │ ├── int_sum_art13.c │ │ ├── int_sum_art14.c │ │ ├── int_sum_art15.c │ │ ├── int_sum_asi_bed01.c │ │ ├── int_sum_asi_chair01.c │ │ ├── int_sum_asi_chair02.c │ │ ├── int_sum_asi_chest01.c │ │ ├── int_sum_asi_chest02.c │ │ ├── int_sum_asi_chest03.c │ │ ├── int_sum_asi_lanp01.c │ │ ├── int_sum_asi_plant01.c │ │ ├── int_sum_asi_plant02.c │ │ ├── int_sum_asi_screen01.c │ │ ├── int_sum_asi_table01.c │ │ ├── int_sum_asi_table02.c │ │ ├── int_sum_asi_taiko.c │ │ ├── int_sum_ayu.c │ │ ├── int_sum_baketu.c │ │ ├── int_sum_bass.c │ │ ├── int_sum_bass01.c │ │ ├── int_sum_bassl.c │ │ ├── int_sum_bassm.c │ │ ├── int_sum_bdcake01.c │ │ ├── int_sum_billiads.c │ │ ├── int_sum_biwa01.c │ │ ├── int_sum_bla_bed01.c │ │ ├── int_sum_bla_chair02.c │ │ ├── int_sum_bla_chest01.c │ │ ├── int_sum_bla_chest02.c │ │ ├── int_sum_bla_chest03.c │ │ ├── int_sum_bla_desk01.c │ │ ├── int_sum_bla_lanp.c │ │ ├── int_sum_bla_sofa02.c │ │ ├── int_sum_bla_table01.c │ │ ├── int_sum_bla_table02.c │ │ ├── int_sum_blue_bed01.c │ │ ├── int_sum_blue_bench01.c │ │ ├── int_sum_blue_bureau01.c │ │ ├── int_sum_blue_cab01.c │ │ ├── int_sum_blue_chair01.c │ │ ├── int_sum_blue_chest01.c │ │ ├── int_sum_blue_chest02.c │ │ ├── int_sum_blue_clk.c │ │ ├── int_sum_blue_lowchest01.c │ │ ├── int_sum_blue_table01.c │ │ ├── int_sum_bon_boke.c │ │ ├── int_sum_bon_matu01.c │ │ ├── int_sum_bon_matu02.c │ │ ├── int_sum_bon_matu03.c │ │ ├── int_sum_bon_momiji.c │ │ ├── int_sum_bon_pira.c │ │ ├── int_sum_bon_sanshu.c │ │ ├── int_sum_bon_satuki.c │ │ ├── int_sum_bon_turu.c │ │ ├── int_sum_bon_ume.c │ │ ├── int_sum_bookcht01.c │ │ ├── int_sum_casse01.c │ │ ├── int_sum_cello01.c │ │ ├── int_sum_chair01.c │ │ ├── int_sum_chikuon01.c │ │ ├── int_sum_chikuon02.c │ │ ├── int_sum_classiccabinet01.c │ │ ├── int_sum_classicchair01.c │ │ ├── int_sum_classicchest02.c │ │ ├── int_sum_classictable01.c │ │ ├── int_sum_classicwardrope01.c │ │ ├── int_sum_clbed02.c │ │ ├── int_sum_clchair02.c │ │ ├── int_sum_clchest01.c │ │ ├── int_sum_clchest03.c │ │ ├── int_sum_col_chair01.c │ │ ├── int_sum_col_chair02.c │ │ ├── int_sum_col_chair03.c │ │ ├── int_sum_comp01.c │ │ ├── int_sum_conga01.c │ │ ├── int_sum_conpo01.c │ │ ├── int_sum_conpo02.c │ │ ├── int_sum_cont_bed01.c │ │ ├── int_sum_cont_cab01.c │ │ ├── int_sum_cont_chair01.c │ │ ├── int_sum_cont_chest01.c │ │ ├── int_sum_cont_chest02.c │ │ ├── int_sum_cont_chest03.c │ │ ├── int_sum_cont_sofa01.c │ │ ├── int_sum_cont_sofa02.c │ │ ├── int_sum_cont_table01.c │ │ ├── int_sum_cont_table02.c │ │ ├── int_sum_cupboard01.c │ │ ├── int_sum_danna.c │ │ ├── int_sum_demekin.c │ │ ├── int_sum_desk01.c │ │ ├── int_sum_dojyo.c │ │ ├── int_sum_doll01.c │ │ ├── int_sum_doll02.c │ │ ├── int_sum_doll03.c │ │ ├── int_sum_doll04.c │ │ ├── int_sum_doll05.c │ │ ├── int_sum_doll06.c │ │ ├── int_sum_doll07.c │ │ ├── int_sum_doll08.c │ │ ├── int_sum_doll09.c │ │ ├── int_sum_doll10.c │ │ ├── int_sum_doll11.c │ │ ├── int_sum_donko.c │ │ ├── int_sum_fruitbed01.c │ │ ├── int_sum_fruitchair01.c │ │ ├── int_sum_fruitchair02.c │ │ ├── int_sum_fruitchair03.c │ │ ├── int_sum_fruitchair04.c │ │ ├── int_sum_fruitchest01.c │ │ ├── int_sum_fruitchest03.c │ │ ├── int_sum_fruitclk.c │ │ ├── int_sum_fruittable01.c │ │ ├── int_sum_fruittable02.c │ │ ├── int_sum_fruittable03.c │ │ ├── int_sum_fruittv01.c │ │ ├── int_sum_funa.c │ │ ├── int_sum_genji.c │ │ ├── int_sum_gill.c │ │ ├── int_sum_ginyanma.c │ │ ├── int_sum_globe01.c │ │ ├── int_sum_golfbag01.c │ │ ├── int_sum_golfbag02.c │ │ ├── int_sum_golfbag03.c │ │ ├── int_sum_gomadara.c │ │ ├── int_sum_gre_bed01.c │ │ ├── int_sum_gre_chair01.c │ │ ├── int_sum_gre_chair02.c │ │ ├── int_sum_gre_chest01.c │ │ ├── int_sum_gre_chest02.c │ │ ├── int_sum_gre_chest03.c │ │ ├── int_sum_gre_counter01.c │ │ ├── int_sum_gre_desk01.c │ │ ├── int_sum_gre_lanp01.c │ │ ├── int_sum_gre_table01.c │ │ ├── int_sum_guitar01.c │ │ ├── int_sum_guitar02.c │ │ ├── int_sum_guitar03.c │ │ ├── int_sum_gupi.c │ │ ├── int_sum_hachi.c │ │ ├── int_sum_hal_bed01.c │ │ ├── int_sum_hal_box01.c │ │ ├── int_sum_hal_chair01.c │ │ ├── int_sum_hal_chest01.c │ │ ├── int_sum_hal_chest02.c │ │ ├── int_sum_hal_chest03.c │ │ ├── int_sum_hal_clk01.c │ │ ├── int_sum_hal_lanp01.c │ │ ├── int_sum_hal_mirror01.c │ │ ├── int_sum_hal_pkin.c │ │ ├── int_sum_hal_sofa01.c │ │ ├── int_sum_hal_table01.c │ │ ├── int_sum_harp.c │ │ ├── int_sum_hera.c │ │ ├── int_sum_higurashi.c │ │ ├── int_sum_hirata.c │ │ ├── int_sum_ito.c │ │ ├── int_sum_iwana.c │ │ ├── int_sum_jukebox.c │ │ ├── int_sum_kabuto.c │ │ ├── int_sum_kamakiri.c │ │ ├── int_sum_kanabun.c │ │ ├── int_sum_kaseki.c │ │ ├── int_sum_kiageha.c │ │ ├── int_sum_kingyo.c │ │ ├── int_sum_kirigirisu.c │ │ ├── int_sum_kisha.c │ │ ├── int_sum_kitchair01.c │ │ ├── int_sum_kittable01.c │ │ ├── int_sum_koi.c │ │ ├── int_sum_kokuban.c │ │ ├── int_sum_koorogi.c │ │ ├── int_sum_liccabed.c │ │ ├── int_sum_liccachair.c │ │ ├── int_sum_liccachest.c │ │ ├── int_sum_liccakitchen.c │ │ ├── int_sum_liccalanp.c │ │ ├── int_sum_liccalowchest.c │ │ ├── int_sum_liccalowtable.c │ │ ├── int_sum_liccamirror.c │ │ ├── int_sum_liccapiano.c │ │ ├── int_sum_liccasofa.c │ │ ├── int_sum_liccatable.c │ │ ├── int_sum_log_bed01.c │ │ ├── int_sum_log_chair01.c │ │ ├── int_sum_log_chair02.c │ │ ├── int_sum_log_chair03.c │ │ ├── int_sum_log_chest01.c │ │ ├── int_sum_log_chest02.c │ │ ├── int_sum_log_chest03.c │ │ ├── int_sum_log_hatoclk.c │ │ ├── int_sum_log_table01.c │ │ ├── int_sum_log_table02.c │ │ ├── int_sum_lv_stereo.c │ │ ├── int_sum_matumushi.c │ │ ├── int_sum_md01.c │ │ ├── int_sum_mezaclock.c │ │ ├── int_sum_minmin.c │ │ ├── int_sum_misin01.c │ │ ├── int_sum_miyama.c │ │ ├── int_sum_mizunomi.c │ │ ├── int_sum_monki.c │ │ ├── int_sum_monshiro.c │ │ ├── int_sum_namazu.c │ │ ├── int_sum_nanahoshi.c │ │ ├── int_sum_nigoi.c │ │ ├── int_sum_niji.c │ │ ├── int_sum_nisiki.c │ │ ├── int_sum_nokogiri.c │ │ ├── int_sum_ohmurasaki.c │ │ ├── int_sum_oikawa.c │ │ ├── int_sum_okiagari01.c │ │ ├── int_sum_okuwa.c │ │ ├── int_sum_oldclk01.c │ │ ├── int_sum_oldsofa01.c │ │ ├── int_sum_oniyanma.c │ │ ├── int_sum_oonamazu.c │ │ ├── int_sum_pet01.c │ │ ├── int_sum_piano01.c │ │ ├── int_sum_pirania.c │ │ ├── int_sum_pl_aloe01.c │ │ ├── int_sum_pl_ananas.c │ │ ├── int_sum_pl_benjyami.c │ │ ├── int_sum_pl_cocos.c │ │ ├── int_sum_pl_compacta.c │ │ ├── int_sum_pl_draca02.c │ │ ├── int_sum_pl_dracaena.c │ │ ├── int_sum_pl_gomunoki.c │ │ ├── int_sum_pl_hirasabo.c │ │ ├── int_sum_pl_kuroton.c │ │ ├── int_sum_pl_pakila.c │ │ ├── int_sum_pl_pothos.c │ │ ├── int_sum_pl_yamayasi.c │ │ ├── int_sum_popchair01.c │ │ ├── int_sum_popchair02.c │ │ ├── int_sum_popchair03.c │ │ ├── int_sum_poptable01.c │ │ ├── int_sum_poptable02.c │ │ ├── int_sum_poptable03.c │ │ ├── int_sum_radio01.c │ │ ├── int_sum_radio02.c │ │ ├── int_sum_raigyo.c │ │ ├── int_sum_ratan_bed01.c │ │ ├── int_sum_ratan_chest01.c │ │ ├── int_sum_ratan_chest02.c │ │ ├── int_sum_ratan_chest03.c │ │ ├── int_sum_ratan_isu01.c │ │ ├── int_sum_ratan_isu02.c │ │ ├── int_sum_ratan_lanp.c │ │ ├── int_sum_ratan_mirror.c │ │ ├── int_sum_ratan_screen.c │ │ ├── int_sum_ratan_table01.c │ │ ├── int_sum_reco01.c │ │ ├── int_sum_roboclk.c │ │ ├── int_sum_roboconpo.c │ │ ├── int_sum_sabo01.c │ │ ├── int_sum_sabo02.c │ │ ├── int_sum_saiconpo.c │ │ ├── int_sum_sake.c │ │ ├── int_sum_shiokara.c │ │ ├── int_sum_shoukaki.c │ │ ├── int_sum_slot.c │ │ ├── int_sum_sofe01.c │ │ ├── int_sum_sofe02.c │ │ ├── int_sum_sofe03.c │ │ ├── int_sum_stereo01.c │ │ ├── int_sum_stereo02.c │ │ ├── int_sum_stove01.c │ │ ├── int_sum_suberi01.c │ │ ├── int_sum_suzumushi.c │ │ ├── int_sum_syouryou.c │ │ ├── int_sum_taiko01.c │ │ ├── int_sum_takkyu.c │ │ ├── int_sum_tamamushi.c │ │ ├── int_sum_tanago.c │ │ ├── int_sum_taru01.c │ │ ├── int_sum_taru02.c │ │ ├── int_sum_tekin01.c │ │ ├── int_sum_tentou.c │ │ ├── int_sum_timpani01.c │ │ ├── int_sum_tonosama.c │ │ ├── int_sum_totemp01.c │ │ ├── int_sum_totemp02.c │ │ ├── int_sum_totemp03.c │ │ ├── int_sum_totemp04.c │ │ ├── int_sum_touro01.c │ │ ├── int_sum_touro02.c │ │ ├── int_sum_touro03.c │ │ ├── int_sum_touro04.c │ │ ├── int_sum_tukutuku.c │ │ ├── int_sum_tv01.c │ │ ├── int_sum_tv02.c │ │ ├── int_sum_ugui.c │ │ ├── int_sum_unagi.c │ │ ├── int_sum_uwa_cup01.c │ │ ├── int_sum_uwa_poto01.c │ │ ├── int_sum_uwa_vase01.c │ │ ├── int_sum_uwa_vase02.c │ │ ├── int_sum_uwa_vase03.c │ │ ├── int_sum_viola01.c │ │ ├── int_sum_wakasagi.c │ │ ├── int_sum_wc01.c │ │ ├── int_sum_wc02.c │ │ ├── int_sum_whi_bed01.c │ │ ├── int_sum_whi_chest01.c │ │ ├── int_sum_whi_chest02.c │ │ ├── int_sum_whi_lanp.c │ │ ├── int_sum_whi_mirror.c │ │ ├── int_sum_whi_sofa01.c │ │ ├── int_sum_x_bed01.c │ │ ├── int_sum_x_chair01.c │ │ ├── int_sum_x_chest01.c │ │ ├── int_sum_x_chest02.c │ │ ├── int_sum_x_chest03.c │ │ ├── int_sum_x_clk.c │ │ ├── int_sum_x_lanp.c │ │ ├── int_sum_x_piano.c │ │ ├── int_sum_x_sofa01.c │ │ ├── int_sum_x_table01.c │ │ ├── int_sum_yamame.c │ │ ├── int_tak_apollo1.c │ │ ├── int_tak_arwing.c │ │ ├── int_tak_asteroid1.c │ │ ├── int_tak_astro.c │ │ ├── int_tak_barber.c │ │ ├── int_tak_cone01.c │ │ ├── int_tak_cone03.c │ │ ├── int_tak_cube.c │ │ ├── int_tak_drum02.c │ │ ├── int_tak_eisei.c │ │ ├── int_tak_ham1.c │ │ ├── int_tak_hole01.c │ │ ├── int_tak_ice.c │ │ ├── int_tak_isu03.c │ │ ├── int_tak_lion.c │ │ ├── int_tak_megami.c │ │ ├── int_tak_metro.c │ │ ├── int_tak_money.c │ │ ├── int_tak_moon.c │ │ ├── int_tak_mooncar.c │ │ ├── int_tak_moti.c │ │ ├── int_tak_neko.c │ │ ├── int_tak_nes01.c │ │ ├── int_tak_nikki01.c │ │ ├── int_tak_noise.c │ │ ├── int_tak_rocket1.c │ │ ├── int_tak_shuttle.c │ │ ├── int_tak_snowisu.c │ │ ├── int_tak_snowlamp.c │ │ ├── int_tak_sori01.c │ │ ├── int_tak_station.c │ │ ├── int_tak_stew.c │ │ ├── int_tak_syogi.c │ │ ├── int_tak_table02.c │ │ ├── int_tak_tailor.c │ │ ├── int_tak_tekkin.c │ │ ├── int_tak_tent.c │ │ ├── int_tak_tent_box.c │ │ ├── int_tak_tent_lamp.c │ │ ├── int_tak_tetra.c │ │ ├── int_tak_toudai.c │ │ ├── int_tak_ufo.c │ │ ├── int_tak_yaji.c │ │ ├── int_tak_yoroi.c │ │ ├── int_yaz_b_bath.c │ │ ├── int_yaz_b_house.c │ │ ├── int_yaz_candle.c │ │ ├── int_yaz_fish_trophy.c │ │ ├── int_yaz_mario_flower.c │ │ ├── int_yaz_rocket.c │ │ ├── int_yaz_telescope.c │ │ ├── int_yaz_tub.c │ │ ├── int_yaz_turkey_chair.c │ │ ├── int_yaz_turkey_chest.c │ │ ├── int_yaz_turkey_closet.c │ │ ├── int_yaz_wagon.c │ │ ├── int_yos_b_feeder.c │ │ ├── int_yos_cactus.c │ │ ├── int_yos_flamingo.c │ │ ├── int_yos_flamingo2.c │ │ ├── int_yos_gnome.c │ │ ├── int_yos_kflag.c │ │ ├── int_yos_luigi.c │ │ ├── int_yos_mailbox.c │ │ ├── int_yos_mario.c │ │ ├── int_yos_pbstove.c │ │ ├── int_yos_terrace.c │ │ ├── int_yos_turkey_mirror.c │ │ ├── int_yos_turkey_watch.c │ │ ├── int_yos_wheel.c │ │ ├── inv_item.c │ │ ├── inv_mark.c │ │ ├── inv_mb.c │ │ ├── inv_mushi.c │ │ ├── inv_mwin.c │ │ ├── inv_mwin10.c │ │ ├── inv_mwin11.c │ │ ├── inv_mwin12.c │ │ ├── inv_mwin13.c │ │ ├── inv_mwin14.c │ │ ├── inv_mwin15.c │ │ ├── inv_mwin16.c │ │ ├── inv_mwin2.c │ │ ├── inv_mwin3.c │ │ ├── inv_mwin4.c │ │ ├── inv_mwin5.c │ │ ├── inv_mwin6.c │ │ ├── inv_mwin7.c │ │ ├── inv_mwin8.c │ │ ├── inv_mwin9.c │ │ ├── inv_mwin_2cabu1.c │ │ ├── inv_mwin_ame.c │ │ ├── inv_mwin_binsen.c │ │ ├── inv_mwin_cabu.c │ │ ├── inv_mwin_cnaegi.c │ │ ├── inv_mwin_fork.c │ │ ├── inv_mwin_fuku3.c │ │ ├── inv_mwin_fukubukuro.c │ │ ├── inv_mwin_g.c │ │ ├── inv_mwin_haniwa.c │ │ ├── inv_mwin_hitodama.c │ │ ├── inv_mwin_kanban.c │ │ ├── inv_mwin_kaseki.c │ │ ├── inv_mwin_matutake.c │ │ ├── inv_mwin_nittki.c │ │ ├── inv_mwin_nuts.c │ │ ├── inv_mwin_okane.c │ │ ├── inv_mwin_ono.c │ │ ├── inv_mwin_pbox.c │ │ ├── inv_mwin_pbox2.c │ │ ├── inv_mwin_sanddollar.c │ │ ├── inv_mwin_taisou.c │ │ ├── inv_mwin_unknown.c │ │ ├── inv_mwin_yashi.c │ │ ├── inv_original.c │ │ ├── inv_sakana.c │ │ ├── item_fish.c │ │ ├── kai_sousa.c │ │ ├── kai_sousa2.c │ │ ├── kan_eki.c │ │ ├── kan_fune.c │ │ ├── kan_gomi.c │ │ ├── kan_hyouji.c │ │ ├── kan_hyouji2.c │ │ ├── kan_hyouji3.c │ │ ├── kan_tizu.c │ │ ├── kan_waku.c │ │ ├── kan_win.c │ │ ├── kei_hyouji.c │ │ ├── kei_win.c │ │ ├── kti_win.c │ │ ├── lat_atena_kageT.c │ │ ├── lat_hani.c │ │ ├── lat_kakunin.c │ │ ├── lat_letter.c │ │ ├── lat_letter01.c │ │ ├── lat_letter02.c │ │ ├── lat_letter03.c │ │ ├── lat_letter04.c │ │ ├── lat_letter05.c │ │ ├── lat_letter06.c │ │ ├── lat_letter07.c │ │ ├── lat_letter08.c │ │ ├── lat_letter09.c │ │ ├── lat_letter10.c │ │ ├── lat_letter11.c │ │ ├── lat_letter12.c │ │ ├── lat_letter13.c │ │ ├── lat_letter14.c │ │ ├── lat_letter15.c │ │ ├── lat_letter16.c │ │ ├── lat_letter17.c │ │ ├── lat_letter18.c │ │ ├── lat_letter19.c │ │ ├── lat_letter20.c │ │ ├── lat_letter21.c │ │ ├── lat_letter22.c │ │ ├── lat_letter23.c │ │ ├── lat_letter24.c │ │ ├── lat_letter25.c │ │ ├── lat_letter26.c │ │ ├── lat_letter27.c │ │ ├── lat_letter28.c │ │ ├── lat_letter30.c │ │ ├── lat_letter31.c │ │ ├── lat_letter32.c │ │ ├── lat_letter33.c │ │ ├── lat_letter34.c │ │ ├── lat_letter35.c │ │ ├── lat_letter36.c │ │ ├── lat_letter37.c │ │ ├── lat_letter38.c │ │ ├── lat_letter39.c │ │ ├── lat_letter40.c │ │ ├── lat_letter41.c │ │ ├── lat_letter42.c │ │ ├── lat_letter43.c │ │ ├── lat_letter44.c │ │ ├── lat_letter45.c │ │ ├── lat_letter46.c │ │ ├── lat_letter47.c │ │ ├── lat_letter48.c │ │ ├── lat_letter49.c │ │ ├── lat_letter50.c │ │ ├── lat_letter51.c │ │ ├── lat_letter52.c │ │ ├── lat_letter53.c │ │ ├── lat_letter54.c │ │ ├── lat_letter55.c │ │ ├── lat_letter56.c │ │ ├── lat_letter57.c │ │ ├── lat_letter58.c │ │ ├── lat_letter59.c │ │ ├── lat_letter60.c │ │ ├── lat_letter61.c │ │ ├── lat_letter62.c │ │ ├── lat_letter63.c │ │ ├── lat_letter64.c │ │ ├── lat_letter64_xk_tex.c │ │ ├── lat_letter65.c │ │ ├── lat_mes.c │ │ ├── lat_point.c │ │ ├── lat_sentaku2.c │ │ ├── lat_sp.c │ │ ├── log_win_logo3_tex.c │ │ ├── log_win_logo4_tex.c │ │ ├── log_win_nintendo1_tex.c │ │ ├── log_win_nintendo2_tex.c │ │ ├── log_win_nintendo3_tex.c │ │ ├── logo_us_animal.c │ │ ├── logo_us_back.c │ │ ├── logo_us_cros.c │ │ ├── logo_us_sing.c │ │ ├── logo_us_tm.c │ │ ├── mCL_lat_letter.c │ │ ├── mCL_rom_myhome1_wall.c │ │ ├── mFM_grd_beachA_tex.c │ │ ├── mFM_grd_beachB_tex.c │ │ ├── mFM_grd_s_beach_tex.c │ │ ├── mFM_grd_s_bridge1.c │ │ ├── mFM_grd_s_bridge1_pal.c │ │ ├── mFM_grd_s_bridge2.c │ │ ├── mFM_grd_s_bridge2_pal.c │ │ ├── mFM_grd_s_bushA.c │ │ ├── mFM_grd_s_bushB.c │ │ ├── mFM_grd_s_cliff.c │ │ ├── mFM_grd_s_earth.c │ │ ├── mFM_grd_s_grass.c │ │ ├── mFM_grd_s_rail.c │ │ ├── mFM_grd_s_river.c │ │ ├── mFM_grd_s_sand.c │ │ ├── mFM_grd_s_station.c │ │ ├── mFM_grd_s_station1_pal.c │ │ ├── mFM_grd_s_stone.c │ │ ├── mFM_grd_s_tekkyo.c │ │ ├── mFM_grd_s_tunnel.c │ │ ├── mFM_grd_sprashA_tex.c │ │ ├── mFM_grd_sprashC_tex.c │ │ ├── mFM_grd_w_bridge1.c │ │ ├── mFM_grd_w_bridge2.c │ │ ├── mFM_grd_w_bushA.c │ │ ├── mFM_grd_w_bushB.c │ │ ├── mFM_grd_w_cliff.c │ │ ├── mFM_grd_w_earth.c │ │ ├── mFM_grd_w_grass.c │ │ ├── mFM_grd_w_rail.c │ │ ├── mFM_grd_w_river.c │ │ ├── mFM_grd_w_sand.c │ │ ├── mFM_grd_w_station.c │ │ ├── mFM_grd_w_stone.c │ │ ├── mFM_grd_w_tekkyo.c │ │ ├── mFM_grd_w_tunnel.c │ │ ├── mFM_grd_water1_tex.c │ │ ├── mFM_grd_water2_tex.c │ │ ├── mFM_grd_wave1_tex.c │ │ ├── mFM_grd_wave2_tex.c │ │ ├── mFM_grd_wave3_tex.c │ │ ├── mFM_obj_01_zassou.c │ │ ├── mFm_obj_palm_01.c │ │ ├── mFm_obj_tree_01.c │ │ ├── mFm_obj_tree_01_dol.c │ │ ├── mMP_house_pos_list.c │ │ ├── mny_win.c │ │ ├── mra_win.c │ │ ├── mural │ │ │ └── obj_mural.c │ │ ├── mus_icon.c │ │ ├── mus_mark.c │ │ ├── mus_win.c │ │ ├── mus_win2.c │ │ ├── museum_entrance_actable.c │ │ ├── museum_fish_actable.c │ │ ├── museum_fossil_actable.c │ │ ├── museum_insect_actable.c │ │ ├── museum_picture_actable.c │ │ ├── nam_win.c │ │ ├── needlework_actable.c │ │ ├── obj_a_01_flower.c │ │ ├── obj_art01.c │ │ ├── obj_art02.c │ │ ├── obj_art03.c │ │ ├── obj_art04.c │ │ ├── obj_art05.c │ │ ├── obj_art06.c │ │ ├── obj_art07.c │ │ ├── obj_art08.c │ │ ├── obj_art09.c │ │ ├── obj_art10.c │ │ ├── obj_art11.c │ │ ├── obj_art12.c │ │ ├── obj_art13.c │ │ ├── obj_art14.c │ │ ├── obj_art15.c │ │ ├── obj_art_dummy01.c │ │ ├── obj_art_dummy02.c │ │ ├── obj_art_dummy03.c │ │ ├── obj_art_dummy04.c │ │ ├── obj_art_dummy05.c │ │ ├── obj_art_dummy06.c │ │ ├── obj_art_dummy07.c │ │ ├── obj_art_dummy08.c │ │ ├── obj_car_shadow.c │ │ ├── obj_cedar3.c │ │ ├── obj_cedar4.c │ │ ├── obj_cedar5.c │ │ ├── obj_clock_koban.c │ │ ├── obj_clock_museum1.c │ │ ├── obj_clock_shop1.c │ │ ├── obj_clock_shop2.c │ │ ├── obj_clock_shop3.c │ │ ├── obj_clock_shop4.c │ │ ├── obj_clock_tailor.c │ │ ├── obj_clock_yub.c │ │ ├── obj_crack.c │ │ ├── obj_cstump3.c │ │ ├── obj_cstump4.c │ │ ├── obj_cstump5.c │ │ ├── obj_dump_shadow.c │ │ ├── obj_e_boat.c │ │ ├── obj_e_boat │ │ │ └── obj_e_boat.c │ │ ├── obj_e_count01.c │ │ ├── obj_e_count02_cl.c │ │ ├── obj_e_count_shadow.c │ │ ├── obj_e_ghog.c │ │ ├── obj_e_ghog_shadow.c │ │ ├── obj_e_hanami_a.c │ │ ├── obj_e_hfes_a.c │ │ ├── obj_e_hfes_shadow_a.c │ │ ├── obj_e_kago_r.c │ │ ├── obj_e_kago_shadow.c │ │ ├── obj_e_koinobori.c │ │ ├── obj_e_koinobori_shadow.c │ │ ├── obj_e_mikanbox.c │ │ ├── obj_e_mikuji.c │ │ ├── obj_e_mikuji_shadow.c │ │ ├── obj_e_radio.c │ │ ├── obj_e_radio_shadow.c │ │ ├── obj_e_tukimi_l_shadow.c │ │ ├── obj_e_tukimi_r.c │ │ ├── obj_e_turi_l.c │ │ ├── obj_e_turi_l_shadow.c │ │ ├── obj_e_yatai_l.c │ │ ├── obj_e_yatai_shadow_l.c │ │ ├── obj_f_tree.c │ │ ├── obj_fallS.c │ │ ├── obj_fallSE.c │ │ ├── obj_fenceL_shadow.c │ │ ├── obj_fenceS_shadow.c │ │ ├── obj_frag_shadow.c │ │ ├── obj_garagara.c │ │ ├── obj_gold_01.c │ │ ├── obj_hole.c │ │ ├── obj_hole_pal.c │ │ ├── obj_house1_shadow.c │ │ ├── obj_item_apple.c │ │ ├── obj_item_apple2.c │ │ ├── obj_item_axe.c │ │ ├── obj_item_axe2.c │ │ ├── obj_item_bag.c │ │ ├── obj_item_bone.c │ │ ├── obj_item_box.c │ │ ├── obj_item_cage.c │ │ ├── obj_item_carpet.c │ │ ├── obj_item_cloth.c │ │ ├── obj_item_coco.c │ │ ├── obj_item_diary.c │ │ ├── obj_item_fish.c │ │ ├── obj_item_fork.c │ │ ├── obj_item_fossil.c │ │ ├── obj_item_fossil2.c │ │ ├── obj_item_fuku.c │ │ ├── obj_item_haniwa.c │ │ ├── obj_item_kabu.c │ │ ├── obj_item_kabu2.c │ │ ├── obj_item_kaza.c │ │ ├── obj_item_leaf.c │ │ ├── obj_item_matutake.c │ │ ├── obj_item_matutake2.c │ │ ├── obj_item_net.c │ │ ├── obj_item_net2.c │ │ ├── obj_item_nuts.c │ │ ├── obj_item_omikuji.c │ │ ├── obj_item_orange.c │ │ ├── obj_item_orange2.c │ │ ├── obj_item_other.c │ │ ├── obj_item_otosi.c │ │ ├── obj_item_pack.c │ │ ├── obj_item_paper.c │ │ ├── obj_item_peach.c │ │ ├── obj_item_pear.c │ │ ├── obj_item_present.c │ │ ├── obj_item_rod.c │ │ ├── obj_item_rod2.c │ │ ├── obj_item_roll.c │ │ ├── obj_item_seed.c │ │ ├── obj_item_shellA.c │ │ ├── obj_item_shellB.c │ │ ├── obj_item_shellC.c │ │ ├── obj_item_shovel.c │ │ ├── obj_item_shovel2.c │ │ ├── obj_item_taisou.c │ │ ├── obj_item_tane.c │ │ ├── obj_item_tane2.c │ │ ├── obj_item_ticket.c │ │ ├── obj_item_tool.c │ │ ├── obj_item_trash.c │ │ ├── obj_item_umbrella.c │ │ ├── obj_item_utiwa.c │ │ ├── obj_item_wall.c │ │ ├── obj_koban_shine.c │ │ ├── obj_melody.c │ │ ├── obj_misin.c │ │ ├── obj_misin_cloth.c │ │ ├── obj_museum1_shine.c │ │ ├── obj_museum4_shine.c │ │ ├── obj_museum4_water.c │ │ ├── obj_museum4_water_evw_anime.c │ │ ├── obj_museum5.c │ │ ├── obj_museum5_evw_anime.c │ │ ├── obj_museum5_hasu.c │ │ ├── obj_museum5_kusa1.c │ │ ├── obj_museum5_kusa2.c │ │ ├── obj_museum5_kusa3.c │ │ ├── obj_museum_shadow.c │ │ ├── obj_myhome1_shadowE.c │ │ ├── obj_myhome_step_down.c │ │ ├── obj_myhome_step_up.c │ │ ├── obj_notice.c │ │ ├── obj_palm3.c │ │ ├── obj_palm4.c │ │ ├── obj_palm5.c │ │ ├── obj_pstump3.c │ │ ├── obj_pstump4.c │ │ ├── obj_pstump5.c │ │ ├── obj_romtrain_door.c │ │ ├── obj_s_bridgeA.c │ │ ├── obj_s_buildsite.c │ │ ├── obj_s_car.c │ │ ├── obj_s_cedar.c │ │ ├── obj_s_cedar2.c │ │ ├── obj_s_cedar3.c │ │ ├── obj_s_cedar4.c │ │ ├── obj_s_cedar5.c │ │ ├── obj_s_cedar_baby.c │ │ ├── obj_s_cedar_dead.c │ │ ├── obj_s_cstump2.c │ │ ├── obj_s_cstump3.c │ │ ├── obj_s_cstump4.c │ │ ├── obj_s_cstump5.c │ │ ├── obj_s_douzou.c │ │ ├── obj_s_douzou_shadow.c │ │ ├── obj_s_dump.c │ │ ├── obj_s_fenceL.c │ │ ├── obj_s_fenceS.c │ │ ├── obj_s_frag.c │ │ ├── obj_s_honeycomb.c │ │ ├── obj_s_house1.c │ │ ├── obj_s_house_i.c │ │ ├── obj_s_house_i_shadow.c │ │ ├── obj_s_kanban.c │ │ ├── obj_s_kouban.c │ │ ├── obj_s_kouban_shadow.c │ │ ├── obj_s_lotus.c │ │ ├── obj_s_melody.c │ │ ├── obj_s_museum.c │ │ ├── obj_s_myhome1.c │ │ ├── obj_s_myhome_i.c │ │ ├── obj_s_myhome_i_shadow.c │ │ ├── obj_s_notice.c │ │ ├── obj_s_palm.c │ │ ├── obj_s_palm1.c │ │ ├── obj_s_palm2.c │ │ ├── obj_s_palm3.c │ │ ├── obj_s_palm4.c │ │ ├── obj_s_palm5.c │ │ ├── obj_s_palm5_coco.c │ │ ├── obj_s_post.c │ │ ├── obj_s_post_delivery.c │ │ ├── obj_s_post_flag_model.c │ │ ├── obj_s_post_flag_off.c │ │ ├── obj_s_post_flag_on.c │ │ ├── obj_s_post_flag_on_wait.c │ │ ├── obj_s_post_flag_on_wait_anim.c │ │ ├── obj_s_post_open.c │ │ ├── obj_s_pstump2.c │ │ ├── obj_s_pstump3.c │ │ ├── obj_s_pstump4.c │ │ ├── obj_s_pstump5.c │ │ ├── obj_s_shop1.c │ │ ├── obj_s_shrine.c │ │ ├── obj_s_sightmap.c │ │ ├── obj_s_station1.c │ │ ├── obj_s_stoneA.c │ │ ├── obj_s_stoneB.c │ │ ├── obj_s_stoneC.c │ │ ├── obj_s_stoneD.c │ │ ├── obj_s_stoneE.c │ │ ├── obj_s_stump2.c │ │ ├── obj_s_stump3.c │ │ ├── obj_s_stump4.c │ │ ├── obj_s_stump5.c │ │ ├── obj_s_tailor.c │ │ ├── obj_s_tailor_shadow.c │ │ ├── obj_s_tent.c │ │ ├── obj_s_tent_shadow.c │ │ ├── obj_s_toudai.c │ │ ├── obj_s_toudai_shadow.c │ │ ├── obj_s_tree.c │ │ ├── obj_s_tree1.c │ │ ├── obj_s_tree2.c │ │ ├── obj_s_tree3.c │ │ ├── obj_s_tree4.c │ │ ├── obj_s_tree5.c │ │ ├── obj_s_tree5_apple.c │ │ ├── obj_s_tree_dead.c │ │ ├── obj_s_uranai.c │ │ ├── obj_s_yamishop.c │ │ ├── obj_s_yubinkyoku.c │ │ ├── obj_s_yubinkyoku_shadow.c │ │ ├── obj_shop1_shadow.c │ │ ├── obj_shop_akican.c │ │ ├── obj_shop_axe.c │ │ ├── obj_shop_axe2.c │ │ ├── obj_shop_candy.c │ │ ├── obj_shop_carpet.c │ │ ├── obj_shop_cnaegi.c │ │ ├── obj_shop_fuku.c │ │ ├── obj_shop_honegai.c │ │ ├── obj_shop_horagai.c │ │ ├── obj_shop_kanban.c │ │ ├── obj_shop_kaza1.c │ │ ├── obj_shop_kaza2.c │ │ ├── obj_shop_kaza3.c │ │ ├── obj_shop_kaza4.c │ │ ├── obj_shop_kaza5.c │ │ ├── obj_shop_kaza6.c │ │ ├── obj_shop_kaza7.c │ │ ├── obj_shop_kaza8.c │ │ ├── obj_shop_komagai.c │ │ ├── obj_shop_letter.c │ │ ├── obj_shop_manekin.c │ │ ├── obj_shop_md.c │ │ ├── obj_shop_naegi.c │ │ ├── obj_shop_nagagutu.c │ │ ├── obj_shop_net.c │ │ ├── obj_shop_net2.c │ │ ├── obj_shop_ougigai.c │ │ ├── obj_shop_paint.c │ │ ├── obj_shop_paper.c │ │ ├── obj_shop_rod.c │ │ ├── obj_shop_rod2.c │ │ ├── obj_shop_sakuragai.c │ │ ├── obj_shop_sango.c │ │ ├── obj_shop_seed.c │ │ ├── obj_shop_shakogai.c │ │ ├── obj_shop_shovel.c │ │ ├── obj_shop_shovel2.c │ │ ├── obj_shop_soldout.c │ │ ├── obj_shop_takaragai.c │ │ ├── obj_shop_ticket.c │ │ ├── obj_shop_tire.c │ │ ├── obj_shop_umb01.c │ │ ├── obj_shop_utiwa1.c │ │ ├── obj_shop_utiwa2.c │ │ ├── obj_shop_utiwa3.c │ │ ├── obj_shop_utiwa4.c │ │ ├── obj_shop_utiwa5.c │ │ ├── obj_shop_utiwa6.c │ │ ├── obj_shop_utiwa7.c │ │ ├── obj_shop_utiwa8.c │ │ ├── obj_shop_wall.c │ │ ├── obj_shrine_shadow.c │ │ ├── obj_sightmap_shadow.c │ │ ├── obj_station1_shadow.c │ │ ├── obj_stoneA_shadow.c │ │ ├── obj_stoneB_shadow.c │ │ ├── obj_stoneC_shadow.c │ │ ├── obj_stoneD_shadow.c │ │ ├── obj_stoneE_shadow.c │ │ ├── obj_stump3_shadow.c │ │ ├── obj_stump4_shadow.c │ │ ├── obj_stump5_shadow.c │ │ ├── obj_suisou1.c │ │ ├── obj_suisou1_evw_anime.c │ │ ├── obj_tent_lamp.c │ │ ├── obj_toudai_pole.c │ │ ├── obj_toudai_switch.c │ │ ├── obj_train1_1.c │ │ ├── obj_train_3.c │ │ ├── obj_tree4_shadow.c │ │ ├── obj_tree5_shadow.c │ │ ├── obj_tree_shadow.c │ │ ├── obj_uranai_shadow.c │ │ ├── obj_w_cedar1.c │ │ ├── obj_w_cedar1_dead.c │ │ ├── obj_w_cedar2.c │ │ ├── obj_w_cedar3.c │ │ ├── obj_w_cedar4.c │ │ ├── obj_w_cedar5.c │ │ ├── obj_w_cstump2.c │ │ ├── obj_w_cstump3.c │ │ ├── obj_w_cstump4.c │ │ ├── obj_w_cstump5.c │ │ ├── obj_w_fenceL.c │ │ ├── obj_w_fenceS.c │ │ ├── obj_w_honeycomb.c │ │ ├── obj_w_kamakura.c │ │ ├── obj_w_kamakura_shadow.c │ │ ├── obj_w_melody.c │ │ ├── obj_w_notice.c │ │ ├── obj_w_palm.c │ │ ├── obj_w_palm1.c │ │ ├── obj_w_palm1_dead.c │ │ ├── obj_w_palm2.c │ │ ├── obj_w_palm3.c │ │ ├── obj_w_palm4.c │ │ ├── obj_w_palm5.c │ │ ├── obj_w_palm5_coco.c │ │ ├── obj_w_palm6.c │ │ ├── obj_w_post_flag_on_wait_anim.c │ │ ├── obj_w_post_model.c │ │ ├── obj_w_pstump2.c │ │ ├── obj_w_pstump3.c │ │ ├── obj_w_pstump4.c │ │ ├── obj_w_pstump5.c │ │ ├── obj_w_sightmap.c │ │ ├── obj_w_stoneA.c │ │ ├── obj_w_stoneB.c │ │ ├── obj_w_stoneC.c │ │ ├── obj_w_stoneD.c │ │ ├── obj_w_stoneE.c │ │ ├── obj_w_tree1.c │ │ ├── obj_w_tree1_dead.c │ │ ├── obj_w_tree2.c │ │ ├── obj_w_tree3.c │ │ ├── obj_w_tree4.c │ │ ├── obj_w_tree5.c │ │ ├── obj_x_cedar5.c │ │ ├── obj_x_cedar_light_tex_txt.c │ │ ├── obj_x_honeycomb.c │ │ ├── obj_x_tree5.c │ │ ├── obj_x_tree_light_tex_txt.c │ │ ├── obj_yamishop_shadow.c │ │ ├── obj_yubinkyoku_shine.c │ │ ├── obj_zassou_a.c │ │ ├── obj_zassou_b.c │ │ ├── obj_zassou_c.c │ │ ├── onp_hyouji.c │ │ ├── onp_hyouji2.c │ │ ├── onp_sentaku.c │ │ ├── onp_win.c │ │ ├── pas_start.c │ │ ├── pas_win.c │ │ ├── player_anim.c │ │ ├── player_tool.c │ │ ├── point_light.c │ │ ├── pos_win.c │ │ ├── pos_yaji.c │ │ ├── pswd_famicom_list.c │ │ ├── pwd_win.c │ │ ├── req_win.c │ │ ├── reserve_shadow.c │ │ ├── rom_kamakura.c │ │ ├── rom_museum4.c │ │ ├── rom_museum4_ue.c │ │ ├── rom_museum4_wall.c │ │ ├── rom_museum5_wall.c │ │ ├── rom_myhome1_floor.c │ │ ├── rom_myhome1_wall.c │ │ ├── rom_myhome2B_flooar.c │ │ ├── rom_myhome2B_wall.c │ │ ├── rom_myhome2_floor.c │ │ ├── rom_myhome2_wall.c │ │ ├── rom_myhome3_floor.c │ │ ├── rom_myhome3_wall.c │ │ ├── rom_myhome4_1_floor.c │ │ ├── rom_myhome4_1_wall.c │ │ ├── rom_myhome4_2_floor.c │ │ ├── rom_myhome4_2_wall.c │ │ ├── rom_myhome_ug.c │ │ ├── rom_shop1_fuku.c │ │ ├── rom_shop1f.c │ │ ├── rom_shop1w.c │ │ ├── rom_shop2_fuku.c │ │ ├── rom_shop2f.c │ │ ├── rom_shop2w.c │ │ ├── rom_shop3_fuku.c │ │ ├── rom_shop3f.c │ │ ├── rom_shop3w.c │ │ ├── rom_shop4_2f.c │ │ ├── rom_shop4_2w.c │ │ ├── rom_train_out.c │ │ ├── room_lightR.c │ │ ├── rst_win.c │ │ ├── sav_mark.c │ │ ├── sav_mb_model.c │ │ ├── sav_sentaku.c │ │ ├── sav_win.c │ │ ├── sav_win1.c │ │ ├── sen_itemw.c │ │ ├── sen_qitem.c │ │ ├── sen_win.c │ │ ├── shi_win.c │ │ ├── sousa_ink.c │ │ ├── structure │ │ │ ├── palette │ │ │ │ └── structure_pal_data.c │ │ │ └── structure_pal.c │ │ ├── tim_hari.c │ │ ├── tim_win.c │ │ ├── tol_cracker_1.c │ │ ├── tol_hata_01.c │ │ ├── tol_hata_01_evw_anime.c │ │ ├── tol_kamicup_1.c │ │ ├── tol_keitai_1.c │ │ ├── tol_kenjyu_1.c │ │ ├── tol_npcsao_1.c │ │ ├── tol_rope_1.c │ │ ├── tol_rope_1_shadow.c │ │ ├── tol_tamaire.c │ │ ├── tol_uki_1.c │ │ ├── tol_uki_12.c │ │ ├── tol_uki_2.c │ │ ├── tol_uki_22.c │ │ ├── tol_umb_01.c │ │ ├── tol_umb_02.c │ │ ├── tol_umb_03.c │ │ ├── tol_umb_04.c │ │ ├── tol_umb_05.c │ │ ├── tol_umb_06.c │ │ ├── tol_umb_07.c │ │ ├── tol_umb_08.c │ │ ├── tol_umb_09.c │ │ ├── tol_umb_10.c │ │ ├── tol_umb_11.c │ │ ├── tol_umb_12.c │ │ ├── tol_umb_13.c │ │ ├── tol_umb_14.c │ │ ├── tol_umb_15.c │ │ ├── tol_umb_16.c │ │ ├── tol_umb_17.c │ │ ├── tol_umb_18.c │ │ ├── tol_umb_19.c │ │ ├── tol_umb_20.c │ │ ├── tol_umb_21.c │ │ ├── tol_umb_22.c │ │ ├── tol_umb_23.c │ │ ├── tol_umb_24.c │ │ ├── tol_umb_25.c │ │ ├── tol_umb_26.c │ │ ├── tol_umb_27.c │ │ ├── tol_umb_28.c │ │ ├── tol_umb_29.c │ │ ├── tol_umb_30.c │ │ ├── tol_umb_31.c │ │ ├── tol_umb_32.c │ │ ├── tol_umb_w.c │ │ ├── tol_utiwa_1.c │ │ └── tyo_win.c │ ├── npc │ │ ├── default_list.c │ │ ├── grow_list.c │ │ ├── house_list.c │ │ ├── model │ │ │ ├── mdl │ │ │ │ ├── ant_1.c │ │ │ │ ├── bea_1.c │ │ │ │ ├── bev_1.c │ │ │ │ ├── boa_1.c │ │ │ │ ├── bpt_1.c │ │ │ │ ├── brd_1.c │ │ │ │ ├── bul_1.c │ │ │ │ ├── cat_1.c │ │ │ │ ├── cbr_1.c │ │ │ │ ├── chn_1.c │ │ │ │ ├── cml_1.c │ │ │ │ ├── cow_1.c │ │ │ │ ├── crd_1.c │ │ │ │ ├── dog_1.c │ │ │ │ ├── duk_1.c │ │ │ │ ├── elp_1.c │ │ │ │ ├── end_1.c │ │ │ │ ├── flg_1.c │ │ │ │ ├── fob_1.c │ │ │ │ ├── fox_1.c │ │ │ │ ├── goa_1.c │ │ │ │ ├── gor_1.c │ │ │ │ ├── grf_1.c │ │ │ │ ├── gst_1.c │ │ │ │ ├── hem_1.c │ │ │ │ ├── hgh_1.c │ │ │ │ ├── hgs_1.c │ │ │ │ ├── hip_1.c │ │ │ │ ├── hrs_1.c │ │ │ │ ├── kab_1.c │ │ │ │ ├── kal_1.c │ │ │ │ ├── kgr_1.c │ │ │ │ ├── lon_1.c │ │ │ │ ├── lrc_1.c │ │ │ │ ├── mka_1.c │ │ │ │ ├── mnk_1.c │ │ │ │ ├── mob_1.c │ │ │ │ ├── mol_1.c │ │ │ │ ├── mos_1.c │ │ │ │ ├── mus_1.c │ │ │ │ ├── oct_1.c │ │ │ │ ├── ost_1.c │ │ │ │ ├── owl_1.c │ │ │ │ ├── pbr_1.c │ │ │ │ ├── pga_1.c │ │ │ │ ├── pgb_1.c │ │ │ │ ├── pgn_1.c │ │ │ │ ├── pig_1.c │ │ │ │ ├── pkn_1.c │ │ │ │ ├── pla_1.c │ │ │ │ ├── plb_1.c │ │ │ │ ├── plc_1.c │ │ │ │ ├── plj_1.c │ │ │ │ ├── rbt_1.c │ │ │ │ ├── rcc_1.c │ │ │ │ ├── rcd_1.c │ │ │ │ ├── rcf_1.c │ │ │ │ ├── rcn_1.c │ │ │ │ ├── rcs_1.c │ │ │ │ ├── rhn_1.c │ │ │ │ ├── seg_1.c │ │ │ │ ├── shp_1.c │ │ │ │ ├── snt_1.c │ │ │ │ ├── squ_1.c │ │ │ │ ├── tig_1.c │ │ │ │ ├── ttl_1.c │ │ │ │ ├── tuk_1.c │ │ │ │ ├── wip_1.c │ │ │ │ ├── wls_1.c │ │ │ │ ├── wol_1.c │ │ │ │ ├── xct_1.c │ │ │ │ └── xsq_1.c │ │ │ └── tex │ │ │ │ ├── ant_1.c │ │ │ │ ├── ant_2.c │ │ │ │ ├── ant_3.c │ │ │ │ ├── ant_4.c │ │ │ │ ├── ant_5.c │ │ │ │ ├── bea_1.c │ │ │ │ ├── bea_10.c │ │ │ │ ├── bea_2.c │ │ │ │ ├── bea_3.c │ │ │ │ ├── bea_5.c │ │ │ │ ├── bea_6.c │ │ │ │ ├── bea_7.c │ │ │ │ ├── bea_8.c │ │ │ │ ├── bea_9.c │ │ │ │ ├── bev_1.c │ │ │ │ ├── boa_1.c │ │ │ │ ├── bpt_1.c │ │ │ │ ├── brd_1.c │ │ │ │ ├── brd_10.c │ │ │ │ ├── brd_11.c │ │ │ │ ├── brd_2.c │ │ │ │ ├── brd_3.c │ │ │ │ ├── brd_4.c │ │ │ │ ├── brd_5.c │ │ │ │ ├── brd_6.c │ │ │ │ ├── brd_7.c │ │ │ │ ├── brd_8.c │ │ │ │ ├── brd_9.c │ │ │ │ ├── bul_1.c │ │ │ │ ├── bul_2.c │ │ │ │ ├── bul_3.c │ │ │ │ ├── bul_4.c │ │ │ │ ├── cat_1.c │ │ │ │ ├── cat_10.c │ │ │ │ ├── cat_11.c │ │ │ │ ├── cat_12.c │ │ │ │ ├── cat_13.c │ │ │ │ ├── cat_14.c │ │ │ │ ├── cat_15.c │ │ │ │ ├── cat_2.c │ │ │ │ ├── cat_3.c │ │ │ │ ├── cat_4.c │ │ │ │ ├── cat_5.c │ │ │ │ ├── cat_6.c │ │ │ │ ├── cat_7.c │ │ │ │ ├── cat_8.c │ │ │ │ ├── cat_9.c │ │ │ │ ├── cbr_1.c │ │ │ │ ├── cbr_10.c │ │ │ │ ├── cbr_11.c │ │ │ │ ├── cbr_2.c │ │ │ │ ├── cbr_3.c │ │ │ │ ├── cbr_4.c │ │ │ │ ├── cbr_5.c │ │ │ │ ├── cbr_6.c │ │ │ │ ├── cbr_7.c │ │ │ │ ├── cbr_8.c │ │ │ │ ├── cbr_9.c │ │ │ │ ├── chn_1.c │ │ │ │ ├── chn_2.c │ │ │ │ ├── chn_3.c │ │ │ │ ├── chn_4.c │ │ │ │ ├── chn_5.c │ │ │ │ ├── chn_6.c │ │ │ │ ├── chn_7.c │ │ │ │ ├── chn_8.c │ │ │ │ ├── chn_9.c │ │ │ │ ├── cml_1.c │ │ │ │ ├── cow_1.c │ │ │ │ ├── cow_2.c │ │ │ │ ├── cow_3.c │ │ │ │ ├── cow_4.c │ │ │ │ ├── crd_1.c │ │ │ │ ├── crd_2.c │ │ │ │ ├── crd_3.c │ │ │ │ ├── crd_4.c │ │ │ │ ├── dog_1.c │ │ │ │ ├── dog_10.c │ │ │ │ ├── dog_2.c │ │ │ │ ├── dog_3.c │ │ │ │ ├── dog_4.c │ │ │ │ ├── dog_5.c │ │ │ │ ├── dog_6.c │ │ │ │ ├── dog_7.c │ │ │ │ ├── dog_8.c │ │ │ │ ├── dog_9.c │ │ │ │ ├── duk_1.c │ │ │ │ ├── duk_10.c │ │ │ │ ├── duk_11.c │ │ │ │ ├── duk_2.c │ │ │ │ ├── duk_3.c │ │ │ │ ├── duk_4.c │ │ │ │ ├── duk_5.c │ │ │ │ ├── duk_6.c │ │ │ │ ├── duk_7.c │ │ │ │ ├── duk_8.c │ │ │ │ ├── duk_9.c │ │ │ │ ├── elp_1.c │ │ │ │ ├── elp_2.c │ │ │ │ ├── elp_3.c │ │ │ │ ├── elp_4.c │ │ │ │ ├── elp_5.c │ │ │ │ ├── elp_6.c │ │ │ │ ├── elp_7.c │ │ │ │ ├── end_1.c │ │ │ │ ├── flg_1.c │ │ │ │ ├── flg_10.c │ │ │ │ ├── flg_11.c │ │ │ │ ├── flg_12.c │ │ │ │ ├── flg_13.c │ │ │ │ ├── flg_2.c │ │ │ │ ├── flg_3.c │ │ │ │ ├── flg_4.c │ │ │ │ ├── flg_5.c │ │ │ │ ├── flg_6.c │ │ │ │ ├── flg_7.c │ │ │ │ ├── flg_8.c │ │ │ │ ├── flg_9.c │ │ │ │ ├── fob_1.c │ │ │ │ ├── fox_1.c │ │ │ │ ├── goa_1.c │ │ │ │ ├── goa_2.c │ │ │ │ ├── goa_3.c │ │ │ │ ├── goa_4.c │ │ │ │ ├── goa_5.c │ │ │ │ ├── goa_6.c │ │ │ │ ├── gor_1.c │ │ │ │ ├── gor_2.c │ │ │ │ ├── gor_3.c │ │ │ │ ├── gor_4.c │ │ │ │ ├── gor_5.c │ │ │ │ ├── grf_1.c │ │ │ │ ├── gst_1.c │ │ │ │ ├── hem_1.c │ │ │ │ ├── hgh_1.c │ │ │ │ ├── hgs_1.c │ │ │ │ ├── hip_1.c │ │ │ │ ├── hip_2.c │ │ │ │ ├── hip_3.c │ │ │ │ ├── hip_4.c │ │ │ │ ├── hip_5.c │ │ │ │ ├── hip_6.c │ │ │ │ ├── hip_7.c │ │ │ │ ├── hrs_1.c │ │ │ │ ├── hrs_2.c │ │ │ │ ├── hrs_3.c │ │ │ │ ├── hrs_4.c │ │ │ │ ├── hrs_5.c │ │ │ │ ├── hrs_6.c │ │ │ │ ├── hrs_7.c │ │ │ │ ├── hrs_8.c │ │ │ │ ├── kab_1.c │ │ │ │ ├── kal_1.c │ │ │ │ ├── kal_2.c │ │ │ │ ├── kal_3.c │ │ │ │ ├── kal_4.c │ │ │ │ ├── kal_5.c │ │ │ │ ├── kal_6.c │ │ │ │ ├── kgr_1.c │ │ │ │ ├── kgr_2.c │ │ │ │ ├── kgr_3.c │ │ │ │ ├── kgr_4.c │ │ │ │ ├── kgr_5.c │ │ │ │ ├── kgr_6.c │ │ │ │ ├── lon_1.c │ │ │ │ ├── lon_2.c │ │ │ │ ├── lon_3.c │ │ │ │ ├── lon_4.c │ │ │ │ ├── lrc_1.c │ │ │ │ ├── mka_1.c │ │ │ │ ├── mnk_1.c │ │ │ │ ├── mob_1.c │ │ │ │ ├── mol_1.c │ │ │ │ ├── mos_1.c │ │ │ │ ├── mus_1.c │ │ │ │ ├── mus_10.c │ │ │ │ ├── mus_2.c │ │ │ │ ├── mus_3.c │ │ │ │ ├── mus_4.c │ │ │ │ ├── mus_5.c │ │ │ │ ├── mus_6.c │ │ │ │ ├── mus_7.c │ │ │ │ ├── mus_8.c │ │ │ │ ├── mus_9.c │ │ │ │ ├── oct_1.c │ │ │ │ ├── ost_1.c │ │ │ │ ├── ost_2.c │ │ │ │ ├── ost_3.c │ │ │ │ ├── ost_4.c │ │ │ │ ├── owl_1.c │ │ │ │ ├── pbr_1.c │ │ │ │ ├── pbr_2.c │ │ │ │ ├── pbr_3.c │ │ │ │ ├── pbr_4.c │ │ │ │ ├── pbr_5.c │ │ │ │ ├── pga_1.c │ │ │ │ ├── pgb_1.c │ │ │ │ ├── pgn_1.c │ │ │ │ ├── pgn_2.c │ │ │ │ ├── pgn_3.c │ │ │ │ ├── pgn_4.c │ │ │ │ ├── pgn_5.c │ │ │ │ ├── pgn_6.c │ │ │ │ ├── pgn_7.c │ │ │ │ ├── pgn_8.c │ │ │ │ ├── pig_1.c │ │ │ │ ├── pig_10.c │ │ │ │ ├── pig_11.c │ │ │ │ ├── pig_2.c │ │ │ │ ├── pig_3.c │ │ │ │ ├── pig_4.c │ │ │ │ ├── pig_5.c │ │ │ │ ├── pig_6.c │ │ │ │ ├── pig_7.c │ │ │ │ ├── pig_8.c │ │ │ │ ├── pig_9.c │ │ │ │ ├── pkn_1.c │ │ │ │ ├── pla_1.c │ │ │ │ ├── plb_1.c │ │ │ │ ├── plc_1.c │ │ │ │ ├── plj_1.c │ │ │ │ ├── rbt_1.c │ │ │ │ ├── rbt_10.c │ │ │ │ ├── rbt_11.c │ │ │ │ ├── rbt_2.c │ │ │ │ ├── rbt_3.c │ │ │ │ ├── rbt_4.c │ │ │ │ ├── rbt_5.c │ │ │ │ ├── rbt_6.c │ │ │ │ ├── rbt_7.c │ │ │ │ ├── rbt_8.c │ │ │ │ ├── rbt_9.c │ │ │ │ ├── rcc_1.c │ │ │ │ ├── rcd_1.c │ │ │ │ ├── rcf_1.c │ │ │ │ ├── rcn_1.c │ │ │ │ ├── rcs_1.c │ │ │ │ ├── rhn_1.c │ │ │ │ ├── rhn_2.c │ │ │ │ ├── rhn_3.c │ │ │ │ ├── rhn_4.c │ │ │ │ ├── seg_1.c │ │ │ │ ├── shp_1.c │ │ │ │ ├── shp_2.c │ │ │ │ ├── shp_3.c │ │ │ │ ├── shp_4.c │ │ │ │ ├── shp_5.c │ │ │ │ ├── shp_6.c │ │ │ │ ├── snt_1.c │ │ │ │ ├── squ_1.c │ │ │ │ ├── squ_10.c │ │ │ │ ├── squ_11.c │ │ │ │ ├── squ_2.c │ │ │ │ ├── squ_3.c │ │ │ │ ├── squ_4.c │ │ │ │ ├── squ_5.c │ │ │ │ ├── squ_6.c │ │ │ │ ├── squ_7.c │ │ │ │ ├── squ_8.c │ │ │ │ ├── squ_9.c │ │ │ │ ├── tig_1.c │ │ │ │ ├── tig_2.c │ │ │ │ ├── tig_3.c │ │ │ │ ├── tig_4.c │ │ │ │ ├── ttl_1.c │ │ │ │ ├── tuk_1.c │ │ │ │ ├── wip_1.c │ │ │ │ ├── wls_1.c │ │ │ │ ├── wol_1.c │ │ │ │ ├── wol_2.c │ │ │ │ ├── wol_3.c │ │ │ │ ├── wol_4.c │ │ │ │ ├── wol_5.c │ │ │ │ ├── wol_6.c │ │ │ │ ├── xct_1.c │ │ │ │ └── xsq_1.c │ │ ├── npc_1_3haku_e1.c │ │ ├── npc_1_4haku_e1.c │ │ ├── npc_1_a1.c │ │ ├── npc_1_a2.c │ │ ├── npc_1_a2_r1.c │ │ ├── npc_1_a_f1.c │ │ ├── npc_1_a_f2.c │ │ ├── npc_1_a_r1.c │ │ ├── npc_1_a_r2.c │ │ ├── npc_1_aisatu1.c │ │ ├── npc_1_aisatu2.c │ │ ├── npc_1_aisatu3.c │ │ ├── npc_1_aisatu4.c │ │ ├── npc_1_akireru_r1.c │ │ ├── npc_1_akireru_r2.c │ │ ├── npc_1_appear1.c │ │ ├── npc_1_aseru1.c │ │ ├── npc_1_aseru2.c │ │ ├── npc_1_aseru_f1.c │ │ ├── npc_1_aseru_f2.c │ │ ├── npc_1_aseru_i1.c │ │ ├── npc_1_aseru_i2.c │ │ ├── npc_1_asihumi1.c │ │ ├── npc_1_banzai1.c │ │ ├── npc_1_buruburu1.c │ │ ├── npc_1_buruburu2.c │ │ ├── npc_1_clap1.c │ │ ├── npc_1_contract1.c │ │ ├── npc_1_contract2.c │ │ ├── npc_1_contract3.c │ │ ├── npc_1_cracker_count1.c │ │ ├── npc_1_cracker_fire1.c │ │ ├── npc_1_cracker_run1.c │ │ ├── npc_1_cracker_wait1.c │ │ ├── npc_1_dance1.c │ │ ├── npc_1_delivery1.c │ │ ├── npc_1_deru1.c │ │ ├── npc_1_deru2.c │ │ ├── npc_1_don1.c │ │ ├── npc_1_ensou_e1.c │ │ ├── npc_1_estimate_f1.c │ │ ├── npc_1_fly1.c │ │ ├── npc_1_flyaway1.c │ │ ├── npc_1_gaaan1.c │ │ ├── npc_1_gaaan2.c │ │ ├── npc_1_gaaan_d1.c │ │ ├── npc_1_gaaan_d2.c │ │ ├── npc_1_gekido_r1.c │ │ ├── npc_1_gekido_r2.c │ │ ├── npc_1_get1.c │ │ ├── npc_1_get_change1.c │ │ ├── npc_1_get_eat1.c │ │ ├── npc_1_get_f1.c │ │ ├── npc_1_get_pull1.c │ │ ├── npc_1_get_pull_f1.c │ │ ├── npc_1_get_pull_wait1.c │ │ ├── npc_1_get_pull_wait_f1.c │ │ ├── npc_1_get_putaway1.c │ │ ├── npc_1_get_putaway_f1.c │ │ ├── npc_1_get_return1.c │ │ ├── npc_1_get_return_f1.c │ │ ├── npc_1_getup_seg1.c │ │ ├── npc_1_getup_wait_seg1.c │ │ ├── npc_1_go_out1.c │ │ ├── npc_1_go_ug1.c │ │ ├── npc_1_goukyu1.c │ │ ├── npc_1_goukyu2.c │ │ ├── npc_1_gstwait1.c │ │ ├── npc_1_guratuku1.c │ │ ├── npc_1_gyafun1.c │ │ ├── npc_1_gyafun2.c │ │ ├── npc_1_ha1.c │ │ ├── npc_1_ha2.c │ │ ├── npc_1_ha_d1.c │ │ ├── npc_1_ha_d2.c │ │ ├── npc_1_ha_e1.c │ │ ├── npc_1_ha_e2.c │ │ ├── npc_1_ha_f1.c │ │ ├── npc_1_ha_f2.c │ │ ├── npc_1_ha_i1.c │ │ ├── npc_1_ha_i2.c │ │ ├── npc_1_happy1.c │ │ ├── npc_1_happy2.c │ │ ├── npc_1_happy_f1.c │ │ ├── npc_1_happy_f2.c │ │ ├── npc_1_happy_i1.c │ │ ├── npc_1_happy_i2.c │ │ ├── npc_1_hatafuri1.c │ │ ├── npc_1_hate1.c │ │ ├── npc_1_hate2.c │ │ ├── npc_1_hate_d1.c │ │ ├── npc_1_hate_d2.c │ │ ├── npc_1_hate_f1.c │ │ ├── npc_1_hate_f2.c │ │ ├── npc_1_hate_i1.c │ │ ├── npc_1_hate_i2.c │ │ ├── npc_1_hirameki1.c │ │ ├── npc_1_hirameki2.c │ │ ├── npc_1_hirameki_d1.c │ │ ├── npc_1_hirameki_d2.c │ │ ├── npc_1_hyuuu1.c │ │ ├── npc_1_hyuuu2.c │ │ ├── npc_1_hyuuu_r1.c │ │ ├── npc_1_hyuuu_r2.c │ │ ├── npc_1_intro1_a.c │ │ ├── npc_1_intro1_b.c │ │ ├── npc_1_keirei1.c │ │ ├── npc_1_keitai_off1.c │ │ ├── npc_1_keitai_on1.c │ │ ├── npc_1_keitai_talk1.c │ │ ├── npc_1_keitai_talk2.c │ │ ├── npc_1_kiduku1.c │ │ ├── npc_1_kiduku2.c │ │ ├── npc_1_kieeeei1.c │ │ ├── npc_1_kieeeei2.c │ │ ├── npc_1_kokeru1.c │ │ ├── npc_1_kokeru_getup1.c │ │ ├── npc_1_kokkuri_d1.c │ │ ├── npc_1_kokkuri_d2.c │ │ ├── npc_1_komari1.c │ │ ├── npc_1_komari_d1.c │ │ ├── npc_1_komari_f1.c │ │ ├── npc_1_komari_i1.c │ │ ├── npc_1_kuisinbo1.c │ │ ├── npc_1_kutipaku1.c │ │ ├── npc_1_kutipaku2.c │ │ ├── npc_1_kyoro1.c │ │ ├── npc_1_landing1.c │ │ ├── npc_1_landing2.c │ │ ├── npc_1_landing3.c │ │ ├── npc_1_love1.c │ │ ├── npc_1_love2.c │ │ ├── npc_1_love_i1.c │ │ ├── npc_1_love_i2.c │ │ ├── npc_1_lovelove1.c │ │ ├── npc_1_lovelove2.c │ │ ├── npc_1_lovelove_f1.c │ │ ├── npc_1_lovelove_f2.c │ │ ├── npc_1_matarou_r1.c │ │ ├── npc_1_matarou_r2.c │ │ ├── npc_1_misin1.c │ │ ├── npc_1_mogaku1.c │ │ ├── npc_1_muka1.c │ │ ├── npc_1_muka2.c │ │ ├── npc_1_musu1.c │ │ ├── npc_1_musu_d1.c │ │ ├── npc_1_musu_f1.c │ │ ├── npc_1_musu_i1.c │ │ ├── npc_1_musu_r1.c │ │ ├── npc_1_muuuuu1.c │ │ ├── npc_1_muuuuu2.c │ │ ├── npc_1_muuuuu_f1.c │ │ ├── npc_1_muuuuu_f2.c │ │ ├── npc_1_muuuuu_i1.c │ │ ├── npc_1_muuuuu_i2.c │ │ ├── npc_1_neboke1.c │ │ ├── npc_1_neboke2.c │ │ ├── npc_1_niko1.c │ │ ├── npc_1_niko_d1.c │ │ ├── npc_1_niko_f1.c │ │ ├── npc_1_niko_i1.c │ │ ├── npc_1_not_contract1.c │ │ ├── npc_1_omairi1.c │ │ ├── npc_1_open1.c │ │ ├── npc_1_open_d1.c │ │ ├── npc_1_open_d2.c │ │ ├── npc_1_otikomu1.c │ │ ├── npc_1_otikomu2.c │ │ ├── npc_1_otiru1.c │ │ ├── npc_1_otiru2.c │ │ ├── npc_1_piku_seg1.c │ │ ├── npc_1_punpun1.c │ │ ├── npc_1_punpun2.c │ │ ├── npc_1_punpun_r1.c │ │ ├── npc_1_punpun_r2.c │ │ ├── npc_1_ready1.c │ │ ├── npc_1_run1.c │ │ ├── npc_1_saisen1.c │ │ ├── npc_1_sanbasi1.c │ │ ├── npc_1_send_mail1.c │ │ ├── npc_1_shituren1.c │ │ ├── npc_1_shituren2.c │ │ ├── npc_1_shituren_i1.c │ │ ├── npc_1_shituren_i2.c │ │ ├── npc_1_sitdown_clap1.c │ │ ├── npc_1_sitdown_d1.c │ │ ├── npc_1_sitdown_drink1.c │ │ ├── npc_1_sitdown_happy1.c │ │ ├── npc_1_sitdown_wait_d1.c │ │ ├── npc_1_smile1.c │ │ ├── npc_1_smile2.c │ │ ├── npc_1_smile_d1.c │ │ ├── npc_1_smile_d2.c │ │ ├── npc_1_smile_f1.c │ │ ├── npc_1_smile_f2.c │ │ ├── npc_1_standup_d1.c │ │ ├── npc_1_taisou1.c │ │ ├── npc_1_taisou2.c │ │ ├── npc_1_taisou3_a.c │ │ ├── npc_1_taisou3_b.c │ │ ├── npc_1_taisou4_a.c │ │ ├── npc_1_taisou4_b.c │ │ ├── npc_1_taisou5_a.c │ │ ├── npc_1_taisou5_b.c │ │ ├── npc_1_taisou6_a.c │ │ ├── npc_1_taisou6_b.c │ │ ├── npc_1_taisou7.c │ │ ├── npc_1_tamahiroi1.c │ │ ├── npc_1_tamakome1.c │ │ ├── npc_1_tamanage1.c │ │ ├── npc_1_tired1.c │ │ ├── npc_1_tkukoro1.c │ │ ├── npc_1_to_deck_d1.c │ │ ├── npc_1_trans_wait1.c │ │ ├── npc_1_trans_wait_f1.c │ │ ├── npc_1_transfer1.c │ │ ├── npc_1_transfer_f1.c │ │ ├── npc_1_tue1.c │ │ ├── npc_1_tunahiki_aiko1.c │ │ ├── npc_1_tunahiki_furi1.c │ │ ├── npc_1_tunahiki_yuri1.c │ │ ├── npc_1_turi_wait1.c │ │ ├── npc_1_umb_close1.c │ │ ├── npc_1_umb_open1.c │ │ ├── npc_1_umbrella1.c │ │ ├── npc_1_utiwa_wait1.c │ │ ├── npc_1_wait1.c │ │ ├── npc_1_wait_ai1.c │ │ ├── npc_1_wait_do1.c │ │ ├── npc_1_wait_e1.c │ │ ├── npc_1_wait_ki1.c │ │ ├── npc_1_wait_nemu1.c │ │ ├── npc_1_wait_r1.c │ │ ├── npc_1_walk1.c │ │ ├── npc_1_walk_ai1.c │ │ ├── npc_1_walk_do1.c │ │ ├── npc_1_walk_ki1.c │ │ ├── npc_1_warmup1.c │ │ ├── npc_1_warudakumi1.c │ │ ├── npc_1_warudakumi2.c │ │ ├── npc_1_wipkogu1.c │ │ ├── npc_1_wipwait1.c │ │ ├── npc_1_wipwait2.c │ │ ├── npc_1_youi1.c │ │ └── npc_draw_data.c │ ├── player │ │ └── BOY_part_data.c │ ├── scene │ │ ├── BG_TEST01.c │ │ ├── BG_TEST01_XLU.c │ │ ├── NEEDLEWORK.c │ │ ├── PLAYER_SELECT2.c │ │ ├── PLAYER_SELECT3.c │ │ ├── PLAYER_SELECT4.c │ │ ├── broker_shop.c │ │ ├── buggy.c │ │ ├── event_notification.c │ │ ├── fg_tool_in.c │ │ ├── field_tool_field.c │ │ ├── kamakura.c │ │ ├── lighthouse.c │ │ ├── museum_entrance.c │ │ ├── museum_fish.c │ │ ├── museum_fossil.c │ │ ├── museum_insect.c │ │ ├── museum_picture.c │ │ ├── npc_room01.c │ │ ├── npc_room_island.c │ │ ├── p_room_bm_l.c │ │ ├── p_room_bm_ll1.c │ │ ├── p_room_bm_m.c │ │ ├── p_room_bm_s.c │ │ ├── player_room_island.c │ │ ├── player_room_l.c │ │ ├── player_room_ll1.c │ │ ├── player_room_ll2.c │ │ ├── player_room_m.c │ │ ├── player_room_s.c │ │ ├── player_select.c │ │ ├── police_box.c │ │ ├── post_office.c │ │ ├── shop01.c │ │ ├── shop02.c │ │ ├── shop03.c │ │ ├── shop04_1f.c │ │ ├── shop04_2f.c │ │ ├── start_demo1.c │ │ ├── start_demo2.c │ │ ├── start_demo3.c │ │ ├── tent.c │ │ ├── test01.c │ │ ├── test02.c │ │ ├── test03.c │ │ ├── test04.c │ │ ├── test05.c │ │ ├── test_fd_npc_land.c │ │ ├── test_step01.c │ │ ├── title_demo.c │ │ └── water_test.c │ ├── submenu │ │ └── map │ │ │ ├── kan_tizu.c │ │ │ └── kan_tizu2.c │ └── titledemo │ │ ├── pact0.c │ │ ├── pact1.c │ │ ├── pact2.c │ │ ├── pact3.c │ │ └── pact4.c ├── effect │ ├── ef_ami_mizu.c │ ├── ef_anahikari.c │ ├── ef_ase.c │ ├── ef_ase2.c │ ├── ef_ase_ch.c │ ├── ef_break_axe.c │ ├── ef_bubu.c │ ├── ef_buruburu.c │ ├── ef_bush_happa.c │ ├── ef_bush_yuki.c │ ├── ef_car_blight.c │ ├── ef_car_light.c │ ├── ef_clacker.c │ ├── ef_coin.c │ ├── ef_dash_asimoto.c │ ├── ef_dig_hole.c │ ├── ef_dig_mud.c │ ├── ef_dig_scoop.c │ ├── ef_douzou_light.c │ ├── ef_doyon.c │ ├── ef_dust.c │ ├── ef_effect_control.c │ ├── ef_effect_lib.c │ ├── ef_flash.c │ ├── ef_footprint.c │ ├── ef_furo_yuge.c │ ├── ef_gimonhu.c │ ├── ef_goki.c │ ├── ef_ha.c │ ├── ef_halloween.c │ ├── ef_halloween_smoke.c │ ├── ef_hanabi_botan1.c │ ├── ef_hanabi_botan2.c │ ├── ef_hanabi_dummy.c │ ├── ef_hanabi_hoshi.c │ ├── ef_hanabi_set.c │ ├── ef_hanabi_switch.c │ ├── ef_hanabi_yanagi.c │ ├── ef_hanabira.c │ ├── ef_hanatiri.c │ ├── ef_hirameki_den.c │ ├── ef_hirameki_hikari.c │ ├── ef_ikigire.c │ ├── ef_impact_star.c │ ├── ef_kagu_happa.c │ ├── ef_kamifubuki.c │ ├── ef_kangaeru.c │ ├── ef_kantanhu.c │ ├── ef_kasamizu.c │ ├── ef_kasamizutama.c │ ├── ef_kaze.c │ ├── ef_kaze_happa.c │ ├── ef_kigae.c │ ├── ef_kigae_light.c │ ├── ef_kikuzu.c │ ├── ef_killer.c │ ├── ef_kisha_kemuri.c │ ├── ef_konpu.c │ ├── ef_kpun.c │ ├── ef_kyousou_onpu.c │ ├── ef_lamp_light.c │ ├── ef_lovelove.c │ ├── ef_lovelove2.c │ ├── ef_lovelove_heart.c │ ├── ef_make_hem.c │ ├── ef_mizutama.c │ ├── ef_motiyuge.c │ ├── ef_muka.c │ ├── ef_naku.c │ ├── ef_namida.c │ ├── ef_neboke.c │ ├── ef_neboke_akubi.c │ ├── ef_neboke_awa.c │ ├── ef_night13_moon.c │ ├── ef_night15_moon.c │ ├── ef_ongen.c │ ├── ef_otikomi.c │ ├── ef_otosiana.c │ ├── ef_pun.c │ ├── ef_pun_sekimen.c │ ├── ef_pun_yuge.c │ ├── ef_reset_hole.c │ ├── ef_room_sunshine.c │ ├── ef_room_sunshine_minsect.c │ ├── ef_room_sunshine_museum.c │ ├── ef_room_sunshine_police.c │ ├── ef_room_sunshine_posthouse.c │ ├── ef_sandsplash.c │ ├── ef_shock.c │ ├── ef_shooting.c │ ├── ef_shooting_kira.c │ ├── ef_shooting_set.c │ ├── ef_siawase_hana.c │ ├── ef_siawase_hana_ch.c │ ├── ef_siawase_hikari.c │ ├── ef_sibuki.c │ ├── ef_situren.c │ ├── ef_slip.c │ ├── ef_slip_footprint.c │ ├── ef_soba_yuge.c │ ├── ef_steam.c │ ├── ef_string.c │ ├── ef_suisou_awa.c │ ├── ef_swing_axe.c │ ├── ef_swing_net.c │ ├── ef_swing_rod.c │ ├── ef_taberu.c │ ├── ef_takurami.c │ ├── ef_takurami_kira.c │ ├── ef_tamaire.c │ ├── ef_tape.c │ ├── ef_tent_lamp.c │ ├── ef_tumble.c │ ├── ef_tumble_bodyprint.c │ ├── ef_tumble_dust.c │ ├── ef_turi_hamon.c │ ├── ef_turi_hane0.c │ ├── ef_turi_hane1.c │ ├── ef_turi_mizu.c │ ├── ef_turi_suiteki.c │ ├── ef_turn_asimoto.c │ ├── ef_turn_footprint.c │ ├── ef_uranai.c │ ├── ef_wait_asimoto.c │ ├── ef_walk_asimoto.c │ ├── ef_warau.c │ ├── ef_yajirushi.c │ ├── ef_young_tree.c │ ├── ef_yukidama.c │ ├── ef_yukidaruma.c │ └── ef_yukihane.c ├── ev_cherry_manager.c ├── evw_anime.c ├── executor.c ├── f_furniture.c ├── famicom_emu.c ├── first_game.c ├── furniture │ ├── ac_ari_isu01.c │ ├── ac_ari_kitchen01.c │ ├── ac_ari_reizou01.c │ ├── ac_ari_table01.c │ ├── ac_din_amber.c │ ├── ac_din_ammonite.c │ ├── ac_din_bront_body.c │ ├── ac_din_bront_dummy.c │ ├── ac_din_bront_head.c │ ├── ac_din_bront_tail.c │ ├── ac_din_dummy.c │ ├── ac_din_egg.c │ ├── ac_din_hutaba_body.c │ ├── ac_din_hutaba_dummy.c │ ├── ac_din_hutaba_head.c │ ├── ac_din_hutaba_neck.c │ ├── ac_din_mammoth_body.c │ ├── ac_din_mammoth_dummy.c │ ├── ac_din_mammoth_head.c │ ├── ac_din_ptera_Lwing.c │ ├── ac_din_ptera_Rwing.c │ ├── ac_din_ptera_dummy.c │ ├── ac_din_ptera_head.c │ ├── ac_din_stego_body.c │ ├── ac_din_stego_dummyA.c │ ├── ac_din_stego_dummyB.c │ ├── ac_din_stego_head.c │ ├── ac_din_stego_tail.c │ ├── ac_din_stump.c │ ├── ac_din_trex_body.c │ ├── ac_din_trex_dummy.c │ ├── ac_din_trex_head.c │ ├── ac_din_trex_tail.c │ ├── ac_din_trikera_body.c │ ├── ac_din_trikera_dummy.c │ ├── ac_din_trikera_head.c │ ├── ac_din_trikera_tail.c │ ├── ac_din_trilobite.c │ ├── ac_dummy.c │ ├── ac_famicom_common.c │ ├── ac_fmanekin.c │ ├── ac_fumbrella.c │ ├── ac_gold_item.c │ ├── ac_hayakawa_famicom.c │ ├── ac_hnw_common.c │ ├── ac_hos_Tdesk.c │ ├── ac_hos_deskL.c │ ├── ac_hos_deskR.c │ ├── ac_hos_flip.c │ ├── ac_hos_mario_hata.c │ ├── ac_hos_mario_kinoko.c │ ├── ac_hos_piknic.c │ ├── ac_hos_turkey_sofa.c │ ├── ac_iid_benti.c │ ├── ac_iid_diary.c │ ├── ac_iid_funediary.c │ ├── ac_iid_mdiary.c │ ├── ac_iid_newdiary.c │ ├── ac_iid_ningyou.c │ ├── ac_iid_snow.c │ ├── ac_iid_surf.c │ ├── ac_iid_yuki.c │ ├── ac_ike_art_ang.c │ ├── ac_ike_art_fel.c │ ├── ac_ike_art_sya.c │ ├── ac_ike_fish_tro2.c │ ├── ac_ike_island_hako01.c │ ├── ac_ike_island_sensui01.c │ ├── ac_ike_island_uku01.c │ ├── ac_ike_jny_afmen01.c │ ├── ac_ike_jny_botle01.c │ ├── ac_ike_jny_gate01.c │ ├── ac_ike_jny_gojyu01.c │ ├── ac_ike_jny_hariko01.c │ ├── ac_ike_jny_houi01.c │ ├── ac_ike_jny_kibori01.c │ ├── ac_ike_jny_makada01.c │ ├── ac_ike_jny_moai01.c │ ├── ac_ike_jny_ningyo01.c │ ├── ac_ike_jny_pisa01.c │ ├── ac_ike_jny_rosia01.c │ ├── ac_ike_jny_sirser01.c │ ├── ac_ike_jny_sirser201.c │ ├── ac_ike_jny_syon01.c │ ├── ac_ike_jny_tower01.c │ ├── ac_ike_jny_truth01.c │ ├── ac_ike_jpn_tansu01.c │ ├── ac_ike_k_count01.c │ ├── ac_ike_k_iveboy01.c │ ├── ac_ike_k_kid01.c │ ├── ac_ike_k_kid02.c │ ├── ac_ike_k_mame01.c │ ├── ac_ike_k_otome01.c │ ├── ac_ike_k_sinnen01.c │ ├── ac_ike_k_sum01.c │ ├── ac_ike_k_tanabata01.c │ ├── ac_ike_k_turis01.c │ ├── ac_ike_kama_danro01.c │ ├── ac_ike_nikki_fan1.c │ ├── ac_ike_nikki_fan2.c │ ├── ac_ike_nikki_fan3.c │ ├── ac_ike_nikki_fan4.c │ ├── ac_ike_nikki_fan5.c │ ├── ac_ike_nikki_wafu1.c │ ├── ac_ike_prores_bench01.c │ ├── ac_ike_prores_fense01.c │ ├── ac_ike_prores_ling01.c │ ├── ac_ike_prores_ling02.c │ ├── ac_ike_prores_ling03.c │ ├── ac_ike_prores_mat01.c │ ├── ac_ike_prores_punch01.c │ ├── ac_ike_prores_sandbag01.c │ ├── ac_ike_prores_table01.c │ ├── ac_ike_pst_pig01.c │ ├── ac_ike_pst_tesyu01.c │ ├── ac_ike_tent_bike01.c │ ├── ac_ike_tent_fire01.c │ ├── ac_ike_tent_fire02.c │ ├── ac_ike_tent_kayak01.c │ ├── ac_ike_tent_knap01.c │ ├── ac_ike_tent_sleepbag01.c │ ├── ac_iku_bugzapper.c │ ├── ac_iku_busstop.c │ ├── ac_iku_candy.c │ ├── ac_iku_cement.c │ ├── ac_iku_chair.c │ ├── ac_iku_cocoa.c │ ├── ac_iku_cow.c │ ├── ac_iku_denko.c │ ├── ac_iku_flagman.c │ ├── ac_iku_flip_top.c │ ├── ac_iku_gold_green.c │ ├── ac_iku_gold_red.c │ ├── ac_iku_ham.c │ ├── ac_iku_hazardous_top.c │ ├── ac_iku_ido.c │ ├── ac_iku_jack.c │ ├── ac_iku_jersey.c │ ├── ac_iku_mario_coin.c │ ├── ac_iku_mario_dokan.c │ ├── ac_iku_mario_hatena.c │ ├── ac_iku_mario_koura.c │ ├── ac_iku_mario_renga.c │ ├── ac_iku_mario_star.c │ ├── ac_iku_mario_taihou.c │ ├── ac_iku_orange.c │ ├── ac_iku_reducespeed.c │ ├── ac_iku_roller.c │ ├── ac_iku_saku_a.c │ ├── ac_iku_saku_b.c │ ├── ac_iku_sawhousev.c │ ├── ac_iku_slip.c │ ├── ac_iku_tumble.c │ ├── ac_iku_turkey_TV.c │ ├── ac_iku_turkey_bed.c │ ├── ac_iku_turkey_lamp.c │ ├── ac_iku_turkey_table.c │ ├── ac_iku_ukai.c │ ├── ac_iku_work.c │ ├── ac_kazaguruma.c │ ├── ac_kob_disksystem8.c │ ├── ac_kob_getabako1.c │ ├── ac_kob_getabako2.c │ ├── ac_kob_jimudesk.c │ ├── ac_kob_jimuisu.c │ ├── ac_kob_locker1.c │ ├── ac_kob_mastersword.c │ ├── ac_kob_ncube.c │ ├── ac_kob_pipeisu.c │ ├── ac_kob_rika_desk.c │ ├── ac_kob_tobibako.c │ ├── ac_kon_ameclock.c │ ├── ac_kon_atqclock.c │ ├── ac_kon_blueclock.c │ ├── ac_kon_cracker.c │ ├── ac_kon_gomi03.c │ ├── ac_kon_gomi04.c │ ├── ac_kon_grclock.c │ ├── ac_kon_isi01.c │ ├── ac_kon_isi02.c │ ├── ac_kon_isi03.c │ ├── ac_kon_isi04.c │ ├── ac_kon_isi05.c │ ├── ac_kon_isi06.c │ ├── ac_kon_jihanki02.c │ ├── ac_kon_jihanki03.c │ ├── ac_kon_mimiclock.c │ ├── ac_kon_musya.c │ ├── ac_kon_pound.c │ ├── ac_kon_redclock.c │ ├── ac_kon_sisiodosi.c │ ├── ac_kon_snowbed.c │ ├── ac_kon_snowbox.c │ ├── ac_kon_snowclock.c │ ├── ac_kon_snowfreezer.c │ ├── ac_kon_snowsofa.c │ ├── ac_kon_snowtable.c │ ├── ac_kon_snowtansu.c │ ├── ac_kon_snowtv.c │ ├── ac_kon_taiju.c │ ├── ac_kon_tubo.c │ ├── ac_kon_tubo2.c │ ├── ac_kon_tubo3.c │ ├── ac_kon_tukue.c │ ├── ac_kon_waclock.c │ ├── ac_kon_xtree02.c │ ├── ac_myfmanekin.c │ ├── ac_myfumbrella.c │ ├── ac_nog_amenbo.c │ ├── ac_nog_ari.c │ ├── ac_nog_balloon_common.c │ ├── ac_nog_beachbed.c │ ├── ac_nog_beachtable.c │ ├── ac_nog_bishopB.c │ ├── ac_nog_bishopW.c │ ├── ac_nog_burner.c │ ├── ac_nog_collegenote.c │ ├── ac_nog_cornucopia.c │ ├── ac_nog_dango.c │ ├── ac_nog_dump.c │ ├── ac_nog_earth.c │ ├── ac_nog_f_tree.c │ ├── ac_nog_fan01.c │ ├── ac_nog_flat.c │ ├── ac_nog_flower.c │ ├── ac_nog_gong.c │ ├── ac_nog_harddiary.c │ ├── ac_nog_isidai.c │ ├── ac_nog_ka.c │ ├── ac_nog_kaeru.c │ ├── ac_nog_kamakura.c │ ├── ac_nog_kera.c │ ├── ac_nog_kingB.c │ ├── ac_nog_kingW.c │ ├── ac_nog_knightB.c │ ├── ac_nog_knightW.c │ ├── ac_nog_koban.c │ ├── ac_nog_kumo.c │ ├── ac_nog_kurage.c │ ├── ac_nog_lawnmower.c │ ├── ac_nog_maimai.c │ ├── ac_nog_medaka.c │ ├── ac_nog_mikanbox.c │ ├── ac_nog_mino.c │ ├── ac_nog_museum.c │ ├── ac_nog_myhome2.c │ ├── ac_nog_myhome4.c │ ├── ac_nog_nabe.c │ ├── ac_nog_pawnB.c │ ├── ac_nog_pawnW.c │ ├── ac_nog_piraluku.c │ ├── ac_nog_queenB.c │ ├── ac_nog_queenW.c │ ├── ac_nog_rail.c │ ├── ac_nog_rookB.c │ ├── ac_nog_rookW.c │ ├── ac_nog_s_tree.c │ ├── ac_nog_schoolnote.c │ ├── ac_nog_shop1.c │ ├── ac_nog_shrine.c │ ├── ac_nog_snowman.c │ ├── ac_nog_sprinkler.c │ ├── ac_nog_station.c │ ├── ac_nog_suzuki.c │ ├── ac_nog_systemnote.c │ ├── ac_nog_tai.c │ ├── ac_nog_tri_audio01.c │ ├── ac_nog_tri_bed01.c │ ├── ac_nog_tri_chair01.c │ ├── ac_nog_tri_chest01.c │ ├── ac_nog_tri_chest02.c │ ├── ac_nog_tri_chest03.c │ ├── ac_nog_tri_clock01.c │ ├── ac_nog_tri_rack01.c │ ├── ac_nog_tri_sofa01.c │ ├── ac_nog_tri_table01.c │ ├── ac_nog_tudurinote.c │ ├── ac_nog_uranai.c │ ├── ac_nog_w_tree.c │ ├── ac_nog_xtree.c │ ├── ac_nog_yamishop.c │ ├── ac_nog_yubin.c │ ├── ac_nog_zarigani.c │ ├── ac_nog_zassou.c │ ├── ac_radio_test.c │ ├── ac_sugi_alchair.c │ ├── ac_sugi_barbecue.c │ ├── ac_sugi_chesstable.c │ ├── ac_sugi_kpool.c │ ├── ac_sugi_radiatorl.c │ ├── ac_sugi_torch.c │ ├── ac_sum_abura.c │ ├── ac_sum_akiakane.c │ ├── ac_sum_angel.c │ ├── ac_sum_aroana.c │ ├── ac_sum_art01.c │ ├── ac_sum_art04.c │ ├── ac_sum_art05.c │ ├── ac_sum_art06.c │ ├── ac_sum_art08.c │ ├── ac_sum_art09.c │ ├── ac_sum_art10.c │ ├── ac_sum_art11.c │ ├── ac_sum_art12.c │ ├── ac_sum_art13.c │ ├── ac_sum_art14.c │ ├── ac_sum_art15.c │ ├── ac_sum_asi_bed01.c │ ├── ac_sum_asi_chair01.c │ ├── ac_sum_asi_chair02.c │ ├── ac_sum_asi_chest01.c │ ├── ac_sum_asi_chest02.c │ ├── ac_sum_asi_chest03.c │ ├── ac_sum_asi_lanp01.c │ ├── ac_sum_asi_screen01.c │ ├── ac_sum_asi_table01.c │ ├── ac_sum_asi_table02.c │ ├── ac_sum_asi_taiko.c │ ├── ac_sum_ayu.c │ ├── ac_sum_baketu.c │ ├── ac_sum_bass.c │ ├── ac_sum_bass01.c │ ├── ac_sum_bassl.c │ ├── ac_sum_bassm.c │ ├── ac_sum_bdcake01.c │ ├── ac_sum_billiads.c │ ├── ac_sum_biwa01.c │ ├── ac_sum_bla_bed01.c │ ├── ac_sum_bla_chair02.c │ ├── ac_sum_bla_chest01.c │ ├── ac_sum_bla_chest02.c │ ├── ac_sum_bla_chest03.c │ ├── ac_sum_bla_desk01.c │ ├── ac_sum_bla_lanp.c │ ├── ac_sum_bla_sofa02.c │ ├── ac_sum_bla_table01.c │ ├── ac_sum_bla_table02.c │ ├── ac_sum_blue_bed01.c │ ├── ac_sum_blue_bench01.c │ ├── ac_sum_blue_bureau01.c │ ├── ac_sum_blue_cab01.c │ ├── ac_sum_blue_chair01.c │ ├── ac_sum_blue_chest01.c │ ├── ac_sum_blue_chest02.c │ ├── ac_sum_blue_clk.c │ ├── ac_sum_blue_lowchest01.c │ ├── ac_sum_blue_table01.c │ ├── ac_sum_bon_boke.c │ ├── ac_sum_bon_matu01.c │ ├── ac_sum_bon_matu02.c │ ├── ac_sum_bon_matu03.c │ ├── ac_sum_bon_momiji.c │ ├── ac_sum_bon_pira.c │ ├── ac_sum_bon_sanshu.c │ ├── ac_sum_bon_satuki.c │ ├── ac_sum_bon_turu.c │ ├── ac_sum_bon_ume.c │ ├── ac_sum_bookcht01.c │ ├── ac_sum_casse01.c │ ├── ac_sum_cello01.c │ ├── ac_sum_chair01.c │ ├── ac_sum_chikuon01.c │ ├── ac_sum_chikuon02.c │ ├── ac_sum_classiccabinet01.c │ ├── ac_sum_classicchair01.c │ ├── ac_sum_classicchest01.c │ ├── ac_sum_classicchest02.c │ ├── ac_sum_classictable01.c │ ├── ac_sum_classicwardrope01.c │ ├── ac_sum_clbed02.c │ ├── ac_sum_clchair02.c │ ├── ac_sum_clchest03.c │ ├── ac_sum_col_chair01.c │ ├── ac_sum_col_chair02.c │ ├── ac_sum_col_chair03.c │ ├── ac_sum_comp01.c │ ├── ac_sum_conga01.c │ ├── ac_sum_conpo01.c │ ├── ac_sum_conpo02.c │ ├── ac_sum_cont_bed01.c │ ├── ac_sum_cont_cab01.c │ ├── ac_sum_cont_chair01.c │ ├── ac_sum_cont_chest01.c │ ├── ac_sum_cont_chest02.c │ ├── ac_sum_cont_chest03.c │ ├── ac_sum_cont_sofa01.c │ ├── ac_sum_cont_sofa02.c │ ├── ac_sum_cont_table01.c │ ├── ac_sum_cont_table02.c │ ├── ac_sum_cupboard01.c │ ├── ac_sum_danna.c │ ├── ac_sum_demekin.c │ ├── ac_sum_desk01.c │ ├── ac_sum_dojyo.c │ ├── ac_sum_doll01.c │ ├── ac_sum_doll02.c │ ├── ac_sum_doll03.c │ ├── ac_sum_doll04.c │ ├── ac_sum_doll05.c │ ├── ac_sum_doll06.c │ ├── ac_sum_doll07.c │ ├── ac_sum_doll08.c │ ├── ac_sum_doll09.c │ ├── ac_sum_doll10.c │ ├── ac_sum_doll11.c │ ├── ac_sum_donko.c │ ├── ac_sum_fruitbed01.c │ ├── ac_sum_fruitchair01.c │ ├── ac_sum_fruitchair02.c │ ├── ac_sum_fruitchair03.c │ ├── ac_sum_fruitchair04.c │ ├── ac_sum_fruitchest01.c │ ├── ac_sum_fruitchest03.c │ ├── ac_sum_fruitclk.c │ ├── ac_sum_fruittable01.c │ ├── ac_sum_fruittable02.c │ ├── ac_sum_fruittable03.c │ ├── ac_sum_fruittv01.c │ ├── ac_sum_funa.c │ ├── ac_sum_genji.c │ ├── ac_sum_gill.c │ ├── ac_sum_ginyanma.c │ ├── ac_sum_globe01.c │ ├── ac_sum_golfbag01.c │ ├── ac_sum_golfbag02.c │ ├── ac_sum_golfbag03.c │ ├── ac_sum_gomadara.c │ ├── ac_sum_gre_bed01.c │ ├── ac_sum_gre_chair01.c │ ├── ac_sum_gre_chair02.c │ ├── ac_sum_gre_chest01.c │ ├── ac_sum_gre_chest02.c │ ├── ac_sum_gre_chest03.c │ ├── ac_sum_gre_counter01.c │ ├── ac_sum_gre_desk01.c │ ├── ac_sum_gre_lanp01.c │ ├── ac_sum_gre_table01.c │ ├── ac_sum_guitar01.c │ ├── ac_sum_guitar02.c │ ├── ac_sum_guitar03.c │ ├── ac_sum_gupi.c │ ├── ac_sum_hachi.c │ ├── ac_sum_hal_bed01.c │ ├── ac_sum_hal_box01.c │ ├── ac_sum_hal_chair01.c │ ├── ac_sum_hal_chest01.c │ ├── ac_sum_hal_chest02.c │ ├── ac_sum_hal_chest03.c │ ├── ac_sum_hal_clk01.c │ ├── ac_sum_hal_lanp01.c │ ├── ac_sum_hal_mirror01.c │ ├── ac_sum_hal_pkin.c │ ├── ac_sum_hal_sofa01.c │ ├── ac_sum_hal_table01.c │ ├── ac_sum_harp.c │ ├── ac_sum_hera.c │ ├── ac_sum_higurashi.c │ ├── ac_sum_hirata.c │ ├── ac_sum_ito.c │ ├── ac_sum_iwana.c │ ├── ac_sum_jukebox.c │ ├── ac_sum_kabuto.c │ ├── ac_sum_kamakiri.c │ ├── ac_sum_kanabun.c │ ├── ac_sum_kaseki.c │ ├── ac_sum_kiageha.c │ ├── ac_sum_kingyo.c │ ├── ac_sum_kirigirisu.c │ ├── ac_sum_kisha.c │ ├── ac_sum_kitchair01.c │ ├── ac_sum_kittable01.c │ ├── ac_sum_koi.c │ ├── ac_sum_kokuban.c │ ├── ac_sum_koorogi.c │ ├── ac_sum_liccabed.c │ ├── ac_sum_liccachair.c │ ├── ac_sum_liccachest.c │ ├── ac_sum_liccakitchen.c │ ├── ac_sum_liccalanp.c │ ├── ac_sum_liccalowchest.c │ ├── ac_sum_liccalowtable.c │ ├── ac_sum_liccamirror.c │ ├── ac_sum_liccapiano.c │ ├── ac_sum_liccasofa.c │ ├── ac_sum_liccatable.c │ ├── ac_sum_log_bed01.c │ ├── ac_sum_log_chair01.c │ ├── ac_sum_log_chair02.c │ ├── ac_sum_log_chair03.c │ ├── ac_sum_log_chest01.c │ ├── ac_sum_log_chest02.c │ ├── ac_sum_log_chest03.c │ ├── ac_sum_log_hatoclk.c │ ├── ac_sum_log_table01.c │ ├── ac_sum_log_table02.c │ ├── ac_sum_lv_stereo.c │ ├── ac_sum_matumushi.c │ ├── ac_sum_md01.c │ ├── ac_sum_mezaclock.c │ ├── ac_sum_minmin.c │ ├── ac_sum_misin01.c │ ├── ac_sum_miyama.c │ ├── ac_sum_mizunomi.c │ ├── ac_sum_monki.c │ ├── ac_sum_monshiro.c │ ├── ac_sum_namazu.c │ ├── ac_sum_nanahoshi.c │ ├── ac_sum_nigoi.c │ ├── ac_sum_niji.c │ ├── ac_sum_nisiki.c │ ├── ac_sum_nokogiri.c │ ├── ac_sum_ohmurasaki.c │ ├── ac_sum_oikawa.c │ ├── ac_sum_okiagari01.c │ ├── ac_sum_okuwa.c │ ├── ac_sum_oldclk01.c │ ├── ac_sum_oldsofa01.c │ ├── ac_sum_oniyanma.c │ ├── ac_sum_oonamazu.c │ ├── ac_sum_pet01.c │ ├── ac_sum_piano01.c │ ├── ac_sum_pirania.c │ ├── ac_sum_pl_aloe01.c │ ├── ac_sum_pl_ananas.c │ ├── ac_sum_pl_benjyami.c │ ├── ac_sum_pl_caladium01.c │ ├── ac_sum_pl_cocos.c │ ├── ac_sum_pl_compacta.c │ ├── ac_sum_pl_draca02.c │ ├── ac_sum_pl_dracaena.c │ ├── ac_sum_pl_gomunoki.c │ ├── ac_sum_pl_hirasabo.c │ ├── ac_sum_pl_kuroton.c │ ├── ac_sum_pl_pakila.c │ ├── ac_sum_pl_pothos.c │ ├── ac_sum_pl_shuroci.c │ ├── ac_sum_pl_yamayasi.c │ ├── ac_sum_popchair01.c │ ├── ac_sum_popchair02.c │ ├── ac_sum_popchair03.c │ ├── ac_sum_poptable01.c │ ├── ac_sum_poptable02.c │ ├── ac_sum_poptable03.c │ ├── ac_sum_radio01.c │ ├── ac_sum_radio02.c │ ├── ac_sum_raigyo.c │ ├── ac_sum_ratan_bed01.c │ ├── ac_sum_ratan_chest01.c │ ├── ac_sum_ratan_chest02.c │ ├── ac_sum_ratan_chest03.c │ ├── ac_sum_ratan_isu01.c │ ├── ac_sum_ratan_isu02.c │ ├── ac_sum_ratan_lanp.c │ ├── ac_sum_ratan_mirror.c │ ├── ac_sum_ratan_screen.c │ ├── ac_sum_ratan_table01.c │ ├── ac_sum_reco01.c │ ├── ac_sum_roboclk.c │ ├── ac_sum_roboconpo.c │ ├── ac_sum_sabo01.c │ ├── ac_sum_sabo02.c │ ├── ac_sum_saiconpo.c │ ├── ac_sum_sake.c │ ├── ac_sum_shiokara.c │ ├── ac_sum_shoukaki.c │ ├── ac_sum_slot.c │ ├── ac_sum_sofe01.c │ ├── ac_sum_sofe02.c │ ├── ac_sum_sofe03.c │ ├── ac_sum_stereo01.c │ ├── ac_sum_stereo02.c │ ├── ac_sum_stove01.c │ ├── ac_sum_suberi01.c │ ├── ac_sum_suzumushi.c │ ├── ac_sum_syouryou.c │ ├── ac_sum_taiko01.c │ ├── ac_sum_takkyu.c │ ├── ac_sum_tamamushi.c │ ├── ac_sum_tanago.c │ ├── ac_sum_taru01.c │ ├── ac_sum_taru02.c │ ├── ac_sum_tekin01.c │ ├── ac_sum_tentou.c │ ├── ac_sum_timpani01.c │ ├── ac_sum_tonosama.c │ ├── ac_sum_totemp01.c │ ├── ac_sum_totemp02.c │ ├── ac_sum_totemp03.c │ ├── ac_sum_totemp04.c │ ├── ac_sum_touro01.c │ ├── ac_sum_touro02.c │ ├── ac_sum_touro03.c │ ├── ac_sum_touro04.c │ ├── ac_sum_tukutuku.c │ ├── ac_sum_tv01.c │ ├── ac_sum_tv02.c │ ├── ac_sum_ugui.c │ ├── ac_sum_unagi.c │ ├── ac_sum_uwa_cup01.c │ ├── ac_sum_uwa_poto01.c │ ├── ac_sum_uwa_vase01.c │ ├── ac_sum_uwa_vase02.c │ ├── ac_sum_uwa_vase03.c │ ├── ac_sum_viola01.c │ ├── ac_sum_wakasagi.c │ ├── ac_sum_wc01.c │ ├── ac_sum_wc02.c │ ├── ac_sum_whi_bed01.c │ ├── ac_sum_whi_chest01.c │ ├── ac_sum_whi_chest02.c │ ├── ac_sum_whi_lanp.c │ ├── ac_sum_whi_mirror.c │ ├── ac_sum_whi_sofa01.c │ ├── ac_sum_x_bed01.c │ ├── ac_sum_x_chair01.c │ ├── ac_sum_x_chest01.c │ ├── ac_sum_x_chest02.c │ ├── ac_sum_x_chest03.c │ ├── ac_sum_x_clk.c │ ├── ac_sum_x_lanp.c │ ├── ac_sum_x_piano.c │ ├── ac_sum_x_sofa01.c │ ├── ac_sum_x_table01.c │ ├── ac_sum_yamame.c │ ├── ac_tak_apollo1.c │ ├── ac_tak_arwing.c │ ├── ac_tak_asteroid1.c │ ├── ac_tak_astro.c │ ├── ac_tak_barber.c │ ├── ac_tak_cone01.c │ ├── ac_tak_cone03.c │ ├── ac_tak_cube.c │ ├── ac_tak_drum02.c │ ├── ac_tak_eisei.c │ ├── ac_tak_ham1.c │ ├── ac_tak_hole01.c │ ├── ac_tak_ice.c │ ├── ac_tak_isu03.c │ ├── ac_tak_lion.c │ ├── ac_tak_megami.c │ ├── ac_tak_metro.c │ ├── ac_tak_money.c │ ├── ac_tak_moon.c │ ├── ac_tak_mooncar.c │ ├── ac_tak_moti.c │ ├── ac_tak_neko.c │ ├── ac_tak_nes01.c │ ├── ac_tak_nikki01.c │ ├── ac_tak_noise.c │ ├── ac_tak_rocket1.c │ ├── ac_tak_shuttle.c │ ├── ac_tak_snowisu.c │ ├── ac_tak_snowlamp.c │ ├── ac_tak_sori01.c │ ├── ac_tak_station.c │ ├── ac_tak_stew.c │ ├── ac_tak_syogi.c │ ├── ac_tak_table02.c │ ├── ac_tak_tailor.c │ ├── ac_tak_tekkin.c │ ├── ac_tak_tent.c │ ├── ac_tak_tent_box.c │ ├── ac_tak_tent_lamp.c │ ├── ac_tak_tetra.c │ ├── ac_tak_toudai.c │ ├── ac_tak_ufo.c │ ├── ac_tak_yaji.c │ ├── ac_tak_yoroi.c │ ├── ac_tool.c │ ├── ac_utiwa.c │ ├── ac_yaz_b_bath.c │ ├── ac_yaz_b_house.c │ ├── ac_yaz_candle.c │ ├── ac_yaz_fish_trophy.c │ ├── ac_yaz_mario_flower.c │ ├── ac_yaz_rocket.c │ ├── ac_yaz_telescope.c │ ├── ac_yaz_tub.c │ ├── ac_yaz_turkey_chair.c │ ├── ac_yaz_turkey_chest.c │ ├── ac_yaz_turkey_closet.c │ ├── ac_yaz_wagon.c │ ├── ac_yos_b_feeder.c │ ├── ac_yos_cactus.c │ ├── ac_yos_flamingo.c │ ├── ac_yos_flamingo2.c │ ├── ac_yos_gnome.c │ ├── ac_yos_kflag.c │ ├── ac_yos_luigi.c │ ├── ac_yos_mailbox.c │ ├── ac_yos_mario.c │ ├── ac_yos_pbstove.c │ ├── ac_yos_terrace.c │ ├── ac_yos_turkey_mirror.c │ ├── ac_yos_turkey_watch.c │ └── ac_yos_wheel.c ├── game.c ├── game │ ├── m_actor.c │ ├── m_actor_dlftbls.c │ ├── m_actor_shadow.c │ ├── m_address_ovl.c │ ├── m_all_grow.c │ ├── m_all_grow_ovl.c │ ├── m_bank_ovl.c │ ├── m_banti.c │ ├── m_bg_item.c │ ├── m_bg_tex.c │ ├── m_bgm.c │ ├── m_birthday_ovl.c │ ├── m_board_ovl.c │ ├── m_calendar.c │ ├── m_calendar_ovl.c │ ├── m_calendar_ovl_draw.c_inc │ ├── m_camera2.c │ ├── m_card.c │ ├── m_card_bti.c_inc │ ├── m_catalog_ovl.c │ ├── m_catalog_ovl_data.c_inc │ ├── m_catalog_ovl_paper_data.c_inc │ ├── m_choice.c │ ├── m_choice_draw.c_inc │ ├── m_choice_main.c_inc │ ├── m_choice_main_appear.c_inc │ ├── m_choice_main_disappear.c_inc │ ├── m_choice_main_hide.c_inc │ ├── m_choice_main_normal.c_inc │ ├── m_choice_sound.c_inc │ ├── m_clip.c │ ├── m_cockroach.c │ ├── m_collision_bg.c │ ├── m_collision_bg_block.c_inc │ ├── m_collision_bg_column.c_inc │ ├── m_collision_bg_info.c_inc │ ├── m_collision_bg_line.c_inc │ ├── m_collision_bg_math.c_inc │ ├── m_collision_bg_move.c_inc │ ├── m_collision_bg_rewrite.c_inc │ ├── m_collision_bg_wall.c_inc │ ├── m_collision_bg_water.c_inc │ ├── m_collision_obj.c │ ├── m_common_data.c │ ├── m_controller.c │ ├── m_cpak.c │ ├── m_cpedit_ovl.c │ ├── m_cpmail_ovl.c │ ├── m_cporiginal_ovl.c │ ├── m_cpwarning_ovl.c │ ├── m_debug.c │ ├── m_debug_display.c │ ├── m_debug_hayakawa.c │ ├── m_debug_mode.c │ ├── m_demo.c │ ├── m_design_ovl.c │ ├── m_diary.c │ ├── m_diary_ovl.c │ ├── m_eappli.c │ ├── m_editEndChk_ovl.c │ ├── m_editor_ovl.c │ ├── m_event.c │ ├── m_event_map_npc.c │ ├── m_event_map_npc_data.c_inc │ ├── m_event_schedule.c_inc │ ├── m_fbdemo.c │ ├── m_fbdemo_fade.c │ ├── m_fbdemo_triforce.c │ ├── m_fbdemo_wipe1.c │ ├── m_field_assessment.c │ ├── m_field_info.c │ ├── m_field_make.c │ ├── m_fishrecord.c │ ├── m_flashrom.c │ ├── m_font.c │ ├── m_font_main.c_inc │ ├── m_font_mark.c_inc │ ├── m_font_offset.c_inc │ ├── m_font_rect.c_inc │ ├── m_fuusen.c │ ├── m_game_dlftbls.c │ ├── m_gba_ovl.c │ ├── m_hand_ovl.c │ ├── m_handbill.c │ ├── m_haniwaPortrait_ovl.c │ ├── m_haniwa_ovl.c │ ├── m_hboard_ovl.c │ ├── m_home.c │ ├── m_house.c │ ├── m_huusui_room.c │ ├── m_huusui_room_ovl.c │ ├── m_huusui_room_ovl_data.inc │ ├── m_inventory_ovl.c │ ├── m_island.c │ ├── m_item_debug.c │ ├── m_item_name.c │ ├── m_kabu_manager.c │ ├── m_kankyo.c │ ├── m_kankyo_weather.c_inc │ ├── m_land.c │ ├── m_ledit_ovl.c │ ├── m_lib.c │ ├── m_lights.c │ ├── m_mail.c │ ├── m_mail_check.c │ ├── m_mail_check_ovl.c │ ├── m_mail_password_check.c │ ├── m_mailbox_ovl.c │ ├── m_malloc.c │ ├── m_map_ovl.c │ ├── m_mark_room.c │ ├── m_mark_room_ovl.c │ ├── m_melody.c │ ├── m_mscore_ovl.c │ ├── m_msg.c │ ├── m_msg_appear.c_inc │ ├── m_msg_appear_wait.c_inc │ ├── m_msg_ctrl.c_inc │ ├── m_msg_cursol.c_inc │ ├── m_msg_data.c_inc │ ├── m_msg_disappear.c_inc │ ├── m_msg_disappear_wait.c_inc │ ├── m_msg_draw_font.c_inc │ ├── m_msg_draw_window.c_inc │ ├── m_msg_hide.c_inc │ ├── m_msg_main.c_inc │ ├── m_msg_normal.c_inc │ ├── m_msg_sound.c_inc │ ├── m_msg_wait.c_inc │ ├── m_museum.c │ ├── m_museum_display.c │ ├── m_mushroom.c │ ├── m_music_ovl.c │ ├── m_name_table.c │ ├── m_needlework.c │ ├── m_needlework_ovl.c │ ├── m_notice.c │ ├── m_notice_ovl.c │ ├── m_npc.c │ ├── m_npc_schedule.c │ ├── m_npc_walk.c │ ├── m_olib.c │ ├── m_passwordChk_ovl.c │ ├── m_passwordMake_ovl.c │ ├── m_pause.c │ ├── m_play.c │ ├── m_player.c │ ├── m_player_call.c │ ├── m_player_common.c_inc │ ├── m_player_controller.c_inc │ ├── m_player_draw.c_inc │ ├── m_player_item.c_inc │ ├── m_player_item_axe.c_inc │ ├── m_player_item_balloon.c_inc │ ├── m_player_item_common.c_inc │ ├── m_player_item_fan.c_inc │ ├── m_player_item_net.c_inc │ ├── m_player_item_rod.c_inc │ ├── m_player_item_scoop.c_inc │ ├── m_player_item_umbrella.c_inc │ ├── m_player_item_windmill.c_inc │ ├── m_player_lib.c │ ├── m_player_main_air_axe.c_inc │ ├── m_player_main_air_rod.c_inc │ ├── m_player_main_air_scoop.c_inc │ ├── m_player_main_broken_axe.c_inc │ ├── m_player_main_cast_rod.c_inc │ ├── m_player_main_change_cloth.c_inc │ ├── m_player_main_climbup_pitfall.c_inc │ ├── m_player_main_close_furniture.c_inc │ ├── m_player_main_collect_rod.c_inc │ ├── m_player_main_complete_payment.c_inc │ ├── m_player_main_dash.c_inc │ ├── m_player_main_demo_get_golden_axe_wait.c_inc │ ├── m_player_main_demo_get_golden_item.c_inc │ ├── m_player_main_demo_get_golden_item2.c_inc │ ├── m_player_main_demo_getoff_boat.c_inc │ ├── m_player_main_demo_getoff_boat_standup.c_inc │ ├── m_player_main_demo_getoff_train.c_inc │ ├── m_player_main_demo_geton_boat.c_inc │ ├── m_player_main_demo_geton_boat_sitdown.c_inc │ ├── m_player_main_demo_geton_boat_wade.c_inc │ ├── m_player_main_demo_geton_boat_wait.c_inc │ ├── m_player_main_demo_geton_train.c_inc │ ├── m_player_main_demo_geton_train_wait.c_inc │ ├── m_player_main_demo_standing_train.c_inc │ ├── m_player_main_demo_wade.c_inc │ ├── m_player_main_demo_wait.c_inc │ ├── m_player_main_demo_walk.c_inc │ ├── m_player_main_dig_scoop.c_inc │ ├── m_player_main_dma.c_inc │ ├── m_player_main_door.c_inc │ ├── m_player_main_fail_emu.c_inc │ ├── m_player_main_fall.c_inc │ ├── m_player_main_fall_pitfall.c_inc │ ├── m_player_main_fill_scoop.c_inc │ ├── m_player_main_fly_rod.c_inc │ ├── m_player_main_get_scoop.c_inc │ ├── m_player_main_give.c_inc │ ├── m_player_main_give_wait.c_inc │ ├── m_player_main_groundhog.c_inc │ ├── m_player_main_hide.c_inc │ ├── m_player_main_hold.c_inc │ ├── m_player_main_intro.c_inc │ ├── m_player_main_invade.c_inc │ ├── m_player_main_knock_door.c_inc │ ├── m_player_main_lie_bed.c_inc │ ├── m_player_main_mail_jump.c_inc │ ├── m_player_main_mail_land.c_inc │ ├── m_player_main_notice_bee.c_inc │ ├── m_player_main_notice_mosquito.c_inc │ ├── m_player_main_notice_net.c_inc │ ├── m_player_main_notice_rod.c_inc │ ├── m_player_main_open_furniture.c_inc │ ├── m_player_main_outdoor.c_inc │ ├── m_player_main_pickup.c_inc │ ├── m_player_main_pickup_exchange.c_inc │ ├── m_player_main_pickup_furniture.c_inc │ ├── m_player_main_pickup_jump.c_inc │ ├── m_player_main_pray.c_inc │ ├── m_player_main_pull.c_inc │ ├── m_player_main_pull_net.c_inc │ ├── m_player_main_push.c_inc │ ├── m_player_main_push_snowball.c_inc │ ├── m_player_main_putaway_net.c_inc │ ├── m_player_main_putaway_rod.c_inc │ ├── m_player_main_putaway_scoop.c_inc │ ├── m_player_main_putin_item.c_inc │ ├── m_player_main_putin_scoop.c_inc │ ├── m_player_main_radio_exercise.c_inc │ ├── m_player_main_ready_net.c_inc │ ├── m_player_main_ready_pitfall.c_inc │ ├── m_player_main_ready_rod.c_inc │ ├── m_player_main_ready_walk_net.c_inc │ ├── m_player_main_recieve.c_inc │ ├── m_player_main_recieve_putaway.c_inc │ ├── m_player_main_recieve_stretch.c_inc │ ├── m_player_main_recieve_wait.c_inc │ ├── m_player_main_reflect_axe.c_inc │ ├── m_player_main_reflect_scoop.c_inc │ ├── m_player_main_refuse.c_inc │ ├── m_player_main_refuse_pickup.c_inc │ ├── m_player_main_relax_rod.c_inc │ ├── m_player_main_release_creature.c_inc │ ├── m_player_main_remove_grass.c_inc │ ├── m_player_main_return_demo.c_inc │ ├── m_player_main_return_outdoor.c_inc │ ├── m_player_main_return_outdoor2.c_inc │ ├── m_player_main_roll_bed.c_inc │ ├── m_player_main_rotate_furniture.c_inc │ ├── m_player_main_rotate_octagon.c_inc │ ├── m_player_main_rotate_umbrella.c_inc │ ├── m_player_main_run.c_inc │ ├── m_player_main_shake_tree.c_inc │ ├── m_player_main_shock.c_inc │ ├── m_player_main_sitdown.c_inc │ ├── m_player_main_sitdown_wait.c_inc │ ├── m_player_main_slip_net.c_inc │ ├── m_player_main_standup.c_inc │ ├── m_player_main_standup_bed.c_inc │ ├── m_player_main_stop_net.c_inc │ ├── m_player_main_struggle_pitfall.c_inc │ ├── m_player_main_stung_bee.c_inc │ ├── m_player_main_stung_mosquito.c_inc │ ├── m_player_main_swing_axe.c_inc │ ├── m_player_main_swing_fan.c_inc │ ├── m_player_main_swing_net.c_inc │ ├── m_player_main_switch_on_lighthouse.c_inc │ ├── m_player_main_takeout_item.c_inc │ ├── m_player_main_talk.c_inc │ ├── m_player_main_throw_money.c_inc │ ├── m_player_main_tired.c_inc │ ├── m_player_main_tumble.c_inc │ ├── m_player_main_tumble_getup.c_inc │ ├── m_player_main_turn_dash.c_inc │ ├── m_player_main_vib_rod.c_inc │ ├── m_player_main_wade.c_inc │ ├── m_player_main_wade_snowball.c_inc │ ├── m_player_main_wait.c_inc │ ├── m_player_main_wait_bed.c_inc │ ├── m_player_main_wait_open_furniture.c_inc │ ├── m_player_main_walk.c_inc │ ├── m_player_main_wash_car.c_inc │ ├── m_player_other_func.c_inc │ ├── m_player_sound.c_inc │ ├── m_player_tools.c_inc │ ├── m_player_vibration.c_inc │ ├── m_police_box.c │ ├── m_post_office.c │ ├── m_prenmi.c │ ├── m_private.c │ ├── m_quest.c │ ├── m_random_field.c │ ├── m_random_field_ovl.c │ ├── m_rcp.c │ ├── m_repay_ovl.c │ ├── m_roll_lib.c │ ├── m_room_type.c │ ├── m_scene.c │ ├── m_scene_ftr.c │ ├── m_scene_table.c │ ├── m_select.c │ ├── m_shop.c │ ├── m_skin_matrix.c │ ├── m_snowman.c │ ├── m_soncho.c │ ├── m_start_data_init.c │ ├── m_string.c │ ├── m_submenu.c │ ├── m_submenu_ovl.c │ ├── m_tag_ovl.c │ ├── m_time.c │ ├── m_timeIn_ovl.c │ ├── m_titledemo.c │ ├── m_trademark.c │ ├── m_train_control.c │ ├── m_vibctl.c │ ├── m_view.c │ ├── m_warning_ovl.c │ └── m_watch_my_step.c ├── gamealloc.c ├── gfxalloc.c ├── graph.c ├── irqmgr.c ├── lb_reki.c ├── lb_rtc.c ├── main.c ├── padmgr.c ├── player_select.c ├── s_cpak.c ├── save_check.c_inc ├── save_check_MYK.c_inc ├── save_check_NSW.c_inc ├── save_check_YSD.c_inc ├── save_check_gen.c_inc ├── save_check_komatu.c_inc ├── save_check_take.c_inc ├── save_menu.c ├── second_game.c ├── static │ ├── Famicom │ │ ├── famicom.cpp │ │ ├── famicom_nesinfo.cpp │ │ ├── ks_nes_core.cpp │ │ └── ks_nes_draw.cpp │ ├── GBA2 │ │ └── JoyBoot.c │ ├── JSystem │ │ ├── J2DGraph │ │ │ ├── J2DGrafContext.cpp │ │ │ └── J2DOrthoGraph.cpp │ │ ├── JFramework │ │ │ ├── JFWDisplay.cpp │ │ │ └── JFWSystem.cpp │ │ ├── JGadget │ │ │ └── linklist.cpp │ │ ├── JKernel │ │ │ ├── JKRAram.cpp │ │ │ ├── JKRAramArchive.cpp │ │ │ ├── JKRAramBlock.cpp │ │ │ ├── JKRAramHeap.cpp │ │ │ ├── JKRAramPiece.cpp │ │ │ ├── JKRAramStream.cpp │ │ │ ├── JKRArchivePri.cpp │ │ │ ├── JKRArchivePub.cpp │ │ │ ├── JKRCompArchive.cpp │ │ │ ├── JKRDecomp.cpp │ │ │ ├── JKRDisposer.cpp │ │ │ ├── JKRDvdAramRipper.cpp │ │ │ ├── JKRDvdArchive.cpp │ │ │ ├── JKRDvdFile.cpp │ │ │ ├── JKRDvdRipper.cpp │ │ │ ├── JKRExpHeap.cpp │ │ │ ├── JKRFile.cpp │ │ │ ├── JKRFileFinder.cpp │ │ │ ├── JKRFileLoader.cpp │ │ │ ├── JKRHeap.cpp │ │ │ ├── JKRMemArchive.cpp │ │ │ └── JKRThread.cpp │ │ ├── JSupport │ │ │ ├── JSUFileStream.cpp │ │ │ ├── JSUInputStream.cpp │ │ │ └── JSUList.cpp │ │ └── JUtility │ │ │ ├── JUTAssert.cpp │ │ │ ├── JUTConsole.cpp │ │ │ ├── JUTDbPrint.cpp │ │ │ ├── JUTDirectFile.cpp │ │ │ ├── JUTDirectPrint.cpp │ │ │ ├── JUTException.cpp │ │ │ ├── JUTFader.cpp │ │ │ ├── JUTFont.cpp │ │ │ ├── JUTFontData_Ascfont_fix12.s │ │ │ ├── JUTGamePad.cpp │ │ │ ├── JUTGraphFifo.cpp │ │ │ ├── JUTProcBar.cpp │ │ │ ├── JUTResFont.cpp │ │ │ ├── JUTVideo.cpp │ │ │ └── JUTXfb.cpp │ ├── MSL_C.PPCEABI.bare.H │ │ ├── FILE_POS.c │ │ ├── abort_exit.c │ │ ├── ansi_files.c │ │ ├── ansi_fp.c │ │ ├── arith.c │ │ ├── buffer_io.c │ │ ├── ctype.c │ │ ├── direct_io.c │ │ ├── e_acos.c │ │ ├── e_atan2.c │ │ ├── e_rem_pio2.c │ │ ├── errno.c │ │ ├── file_io.c │ │ ├── float.c │ │ ├── k_cos.c │ │ ├── k_rem_pio2.c │ │ ├── k_sin.c │ │ ├── mbstring.c │ │ ├── mem.c │ │ ├── mem_funcs.c │ │ ├── misc_io.c │ │ ├── printf.c │ │ ├── rand.c │ │ ├── s_atan.c │ │ ├── s_copysign.c │ │ ├── s_cos.c │ │ ├── s_floor.c │ │ ├── s_frexp.c │ │ ├── s_ldexp.c │ │ ├── s_modf.c │ │ ├── s_sin.c │ │ ├── scanf.c │ │ ├── string.c │ │ ├── strtoul.c │ │ ├── uart_console_io.c │ │ ├── w_acos.c │ │ ├── w_atan2.c │ │ └── wchar_io.c │ ├── Runtime.PPCEABI.H │ │ ├── CPlusLibPPC.cp │ │ ├── Gecko_ExceptionPPC.cp │ │ ├── NMWException.cp │ │ ├── __init_cpp_exceptions.cpp │ │ ├── __mem.c │ │ ├── __va_arg.c │ │ ├── global_destructor_chain.c │ │ ├── ptmf.c │ │ └── runtime.c │ ├── TRK_MINNOW_DOLPHIN │ │ ├── __exception.s │ │ ├── dispatch.c │ │ ├── dolphin_trk.c │ │ ├── dolphin_trk_glue.c │ │ ├── flush_cache.c │ │ ├── main_TRK.c │ │ ├── mainloop.c │ │ ├── mem_TRK.c │ │ ├── mpc_7xx_603e.c │ │ ├── msg.c │ │ ├── msgbuf.c │ │ ├── msghndlr.c │ │ ├── mslsupp.c │ │ ├── mutex_TRK.c │ │ ├── notify.c │ │ ├── nubevent.c │ │ ├── nubinit.c │ │ ├── serpoll.c │ │ ├── support.c │ │ ├── targcont.c │ │ ├── target_options.c │ │ ├── targimpl.c │ │ ├── targsupp.s │ │ └── usr_put.c │ ├── boot.c │ ├── bootdata │ │ ├── gam_win1.c │ │ ├── gam_win2.c │ │ ├── gam_win3.c │ │ └── logo_nin.c │ ├── ctors.s │ ├── dolphin │ │ ├── OdemuExi2 │ │ │ └── DebuggerDriver.c │ │ ├── ai │ │ │ └── ai.c │ │ ├── amcstubs │ │ │ └── AmcExi2Stubs.c │ │ ├── ar │ │ │ ├── __ar.h │ │ │ ├── ar.c │ │ │ └── arq.c │ │ ├── base │ │ │ └── PPCArch.c │ │ ├── card │ │ │ ├── CARDBios.c │ │ │ ├── CARDBlock.c │ │ │ ├── CARDCheck.c │ │ │ ├── CARDCreate.c │ │ │ ├── CARDDelete.c │ │ │ ├── CARDDir.c │ │ │ ├── CARDFormat.c │ │ │ ├── CARDMount.c │ │ │ ├── CARDNet.c │ │ │ ├── CARDOpen.c │ │ │ ├── CARDRaw.c │ │ │ ├── CARDRdwr.c │ │ │ ├── CARDRead.c │ │ │ ├── CARDRename.c │ │ │ ├── CARDStat.c │ │ │ ├── CARDStatEx.c │ │ │ ├── CARDUnlock.c │ │ │ ├── CARDWrite.c │ │ │ └── __card.h │ │ ├── db │ │ │ └── db.c │ │ ├── dsp │ │ │ ├── __dsp.h │ │ │ └── dsp.c │ │ ├── dvd │ │ │ ├── __dvd.h │ │ │ ├── dvd.c │ │ │ ├── dvderror.c │ │ │ ├── dvdfs.c │ │ │ ├── dvdlow.c │ │ │ ├── dvdqueue.c │ │ │ └── fstload.c │ │ ├── exi │ │ │ ├── EXIAd16.c │ │ │ ├── EXIBios.c │ │ │ └── EXIUart.c │ │ ├── gba │ │ │ ├── GBA.c │ │ │ ├── GBAGetProcessStatus.c │ │ │ ├── GBAJoyBoot.c │ │ │ ├── GBARead.c │ │ │ ├── GBAWrite.c │ │ │ └── GBAXfer.c │ │ ├── gx │ │ │ ├── GXAttr.c │ │ │ ├── GXBump.c │ │ │ ├── GXDisplayList.c │ │ │ ├── GXDraw.c │ │ │ ├── GXFifo.c │ │ │ ├── GXFrameBuf.c │ │ │ ├── GXGeometry.c │ │ │ ├── GXInit.c │ │ │ ├── GXLight.c │ │ │ ├── GXMisc.c │ │ │ ├── GXPerf.c │ │ │ ├── GXPixel.c │ │ │ ├── GXSave.c │ │ │ ├── GXStubs.c │ │ │ ├── GXTev.c │ │ │ ├── GXTexture.c │ │ │ ├── GXTransform.c │ │ │ ├── GXVerifRAS.c │ │ │ ├── GXVerifXF.c │ │ │ ├── GXVerify.c │ │ │ ├── GXVert.c │ │ │ └── __gx.h │ │ ├── mtx │ │ │ ├── mtx.c │ │ │ ├── mtx44.c │ │ │ ├── mtxvec.c │ │ │ └── vec.c │ │ ├── odenotstub │ │ │ └── odenotstub.c │ │ ├── os │ │ │ ├── OS.c │ │ │ ├── OSAlarm.c │ │ │ ├── OSAlloc.c │ │ │ ├── OSArena.c │ │ │ ├── OSAudioSystem.c │ │ │ ├── OSCache.c │ │ │ ├── OSContext.c │ │ │ ├── OSError.c │ │ │ ├── OSFont.c │ │ │ ├── OSInterrupt.c │ │ │ ├── OSLink.c │ │ │ ├── OSMemory.c │ │ │ ├── OSMessage.c │ │ │ ├── OSMutex.c │ │ │ ├── OSReboot.c │ │ │ ├── OSReset.c │ │ │ ├── OSResetSW.c │ │ │ ├── OSRtc.c │ │ │ ├── OSStopwatch.c │ │ │ ├── OSSync.c │ │ │ ├── OSThread.c │ │ │ ├── OSTime.c │ │ │ ├── __os.h │ │ │ ├── __ppc_eabi_init.cpp │ │ │ └── __start.c │ │ ├── pad │ │ │ ├── Pad.c │ │ │ └── Padclamp.c │ │ ├── si │ │ │ ├── SIBios.c │ │ │ └── SISamplingRate.c │ │ └── vi │ │ │ ├── __vi.h │ │ │ └── vi.c │ ├── dvderr.c │ ├── initial_menu.c │ ├── jaudio_NES │ │ ├── game │ │ │ ├── OSAttention.c_inc │ │ │ ├── audioheaders.c │ │ │ ├── dummyprobe.c │ │ │ ├── emusound.c │ │ │ ├── game64.c │ │ │ ├── game64.c_inc │ │ │ ├── game64_dummy.c_inc │ │ │ ├── kappa.c │ │ │ ├── melody.c │ │ │ ├── radio.c │ │ │ ├── rhythm.c │ │ │ ├── staff.c │ │ │ └── verysimple.c │ │ └── internal │ │ │ ├── aictrl.c │ │ │ ├── aramcall.c │ │ │ ├── astest.c │ │ │ ├── audioconst.c │ │ │ ├── audiotable.c │ │ │ ├── audiothread.c │ │ │ ├── audiowork.c │ │ │ ├── bankdrv.c │ │ │ ├── bankread.c │ │ │ ├── centcalc.c │ │ │ ├── channel.c │ │ │ ├── cmdstack.c │ │ │ ├── connect.c │ │ │ ├── cpubuf.c │ │ │ ├── driver.c │ │ │ ├── driverinterface.c │ │ │ ├── dsp_GBAKey.c │ │ │ ├── dsp_cardunlock.c │ │ │ ├── dspboot.c │ │ │ ├── dspbuf.c │ │ │ ├── dspdriver.c │ │ │ ├── dspinterface.c │ │ │ ├── dspproc.c │ │ │ ├── dummyrom.c │ │ │ ├── dvdthread.c │ │ │ ├── effect.c │ │ │ ├── fat.c │ │ │ ├── fxinterface.c │ │ │ ├── heapctrl.c │ │ │ ├── ipldec.c │ │ │ ├── ja_calc.c │ │ │ ├── jammain_2.c │ │ │ ├── jamosc.c │ │ │ ├── memory.c │ │ │ ├── midplay.c │ │ │ ├── neosthread.c │ │ │ ├── noteon.c │ │ │ ├── oneshot.c │ │ │ ├── os.c │ │ │ ├── playercall.c │ │ │ ├── random.c │ │ │ ├── rate.c │ │ │ ├── rspsim.c │ │ │ ├── sample.c │ │ │ ├── seqsetup.c │ │ │ ├── streamctrl.c │ │ │ ├── sub_sys.c │ │ │ ├── system.c │ │ │ ├── tables.c │ │ │ ├── track.c │ │ │ └── waveread.c │ ├── jsyswrap.cpp │ ├── libc64 │ │ ├── __osMalloc.c │ │ ├── aprintf.c │ │ ├── malloc.c │ │ ├── math64.c │ │ ├── qrand.c │ │ ├── sleep.c │ │ └── sprintf.c │ ├── libforest │ │ ├── ReconfigBATs.c │ │ ├── emu64 │ │ │ ├── emu64.c │ │ │ ├── emu64_print.cpp │ │ │ └── emu64_utility.c │ │ ├── fault.c │ │ └── osreport.c │ ├── libjsys │ │ ├── jsyswrapper.cpp │ │ ├── jsyswrapper_ext.cpp │ │ └── jsyswrapper_main.cpp │ ├── libu64 │ │ ├── debug.c │ │ ├── gfxprint.c │ │ ├── gfxprint_data.c │ │ └── pad.c │ ├── libultra │ │ ├── contquery.c │ │ ├── contreaddata.c │ │ ├── controller.c │ │ ├── contsetch.c │ │ ├── createmesgqueue.c │ │ ├── createthread.c │ │ ├── destroythread.c │ │ ├── getthreadid.c │ │ ├── gettime.c │ │ ├── gu │ │ │ ├── coss.c │ │ │ ├── lookat.c │ │ │ ├── lookathil.c │ │ │ ├── mtxutil.c │ │ │ ├── normalize.c │ │ │ ├── ortho.c │ │ │ ├── perspective.c │ │ │ ├── rotate.c │ │ │ ├── scale.c │ │ │ ├── sins.c │ │ │ └── translate.c │ │ ├── initialize.c │ │ ├── recvmesg.c │ │ ├── sendmesg.c │ │ ├── setthreadpri.c │ │ ├── settimer.c │ │ ├── shutdown.c │ │ ├── startthread.c │ │ ├── stoptimer.c │ │ ├── timerintr.c │ │ ├── ultra.c │ │ ├── xldtob.c │ │ ├── xlitob.c │ │ └── xprintf.c │ ├── nintendo_hi_0.c │ └── version.c ├── system │ ├── sys_dynamic.c │ ├── sys_math.c │ ├── sys_math3d.c │ ├── sys_math_atan.c │ ├── sys_matrix.c │ ├── sys_romcheck.c │ ├── sys_stacks.c │ ├── sys_ucode.c │ └── sys_vimgr.c └── zurumode.c └── tools ├── __init__.py ├── arc_tool.py ├── audio └── mml_disassembler.py ├── converters ├── assetdis.py ├── gfxdis.py ├── pal16dis.py ├── pal16dis_chunked.py └── vtxdis.py ├── decompctx.py ├── download_tool.py ├── msg_tool.py ├── ninja_syntax.py ├── project.py ├── pyjkernel ├── LICENSE ├── __init__.py ├── __main__.py ├── jkrarchive.py └── jkrcomp.py ├── texture_tool.py └── transform_dep.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/.clang-format -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/README.md -------------------------------------------------------------------------------- /assets/objdiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/assets/objdiff.png -------------------------------------------------------------------------------- /config/GAFE01_00/build.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/config/GAFE01_00/build.sha1 -------------------------------------------------------------------------------- /config/GAFE01_00/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/config/GAFE01_00/config.yml -------------------------------------------------------------------------------- /config/GAFE01_00/splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/config/GAFE01_00/splits.txt -------------------------------------------------------------------------------- /config/GAFU01_00/build.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/config/GAFU01_00/build.sha1 -------------------------------------------------------------------------------- /config/GAFU01_00/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/config/GAFU01_00/config.yml -------------------------------------------------------------------------------- /config/GAFU01_00/splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/config/GAFU01_00/splits.txt -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/configure.py -------------------------------------------------------------------------------- /docs/decomp_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/docs/decomp_basics.md -------------------------------------------------------------------------------- /docs/decomp_me_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/docs/decomp_me_basics.md -------------------------------------------------------------------------------- /docs/extract_game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/docs/extract_game.md -------------------------------------------------------------------------------- /docs/ghidra_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/docs/ghidra_basics.md -------------------------------------------------------------------------------- /docs/ghidra_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/docs/ghidra_setup.md -------------------------------------------------------------------------------- /docs/m2c_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/docs/m2c_basics.md -------------------------------------------------------------------------------- /include/Famicom/famicom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/Famicom/famicom.h -------------------------------------------------------------------------------- /include/Famicom/ks_nes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/Famicom/ks_nes.h -------------------------------------------------------------------------------- /include/GBA/GBAPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/GBA/GBAPriv.h -------------------------------------------------------------------------------- /include/GBA/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/GBA/gba.h -------------------------------------------------------------------------------- /include/GBA2/gba2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/GBA2/gba2.h -------------------------------------------------------------------------------- /include/JSystem/JGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/JSystem/JGeometry.h -------------------------------------------------------------------------------- /include/JSystem/JMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/JSystem/JMacro.h -------------------------------------------------------------------------------- /include/JSystem/JSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/JSystem/JSupport.h -------------------------------------------------------------------------------- /include/JSystem/JSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/JSystem/JSystem.h -------------------------------------------------------------------------------- /include/JSystem/ResTIMG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/JSystem/ResTIMG.h -------------------------------------------------------------------------------- /include/MSL_C/ansi_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/ansi_files.h -------------------------------------------------------------------------------- /include/MSL_C/ansi_fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/ansi_fp.h -------------------------------------------------------------------------------- /include/MSL_C/buffer_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/buffer_io.h -------------------------------------------------------------------------------- /include/MSL_C/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/ctype.h -------------------------------------------------------------------------------- /include/MSL_C/ctype_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/ctype_api.h -------------------------------------------------------------------------------- /include/MSL_C/direct_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/direct_io.h -------------------------------------------------------------------------------- /include/MSL_C/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/locale.h -------------------------------------------------------------------------------- /include/MSL_C/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/math.h -------------------------------------------------------------------------------- /include/MSL_C/mbstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/mbstring.h -------------------------------------------------------------------------------- /include/MSL_C/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/printf.h -------------------------------------------------------------------------------- /include/MSL_C/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/rand.h -------------------------------------------------------------------------------- /include/MSL_C/scanf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/scanf.h -------------------------------------------------------------------------------- /include/MSL_C/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/string.h -------------------------------------------------------------------------------- /include/MSL_C/w_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/w_math.h -------------------------------------------------------------------------------- /include/MSL_C/wchar_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_C/wchar_io.h -------------------------------------------------------------------------------- /include/MSL_CPP/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_CPP/algorithm.h -------------------------------------------------------------------------------- /include/MSL_CPP/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/MSL_CPP/iterator.h -------------------------------------------------------------------------------- /include/PreRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/PreRender.h -------------------------------------------------------------------------------- /include/THA_GA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/THA_GA.h -------------------------------------------------------------------------------- /include/TwoHeadArena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/TwoHeadArena.h -------------------------------------------------------------------------------- /include/_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/_mem.h -------------------------------------------------------------------------------- /include/ac_airplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_airplane.h -------------------------------------------------------------------------------- /include/ac_animal_logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_animal_logo.h -------------------------------------------------------------------------------- /include/ac_ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ant.h -------------------------------------------------------------------------------- /include/ac_arrange_ftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_arrange_ftr.h -------------------------------------------------------------------------------- /include/ac_arrange_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_arrange_room.h -------------------------------------------------------------------------------- /include/ac_ball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ball.h -------------------------------------------------------------------------------- /include/ac_balloon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_balloon.h -------------------------------------------------------------------------------- /include/ac_bee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_bee.h -------------------------------------------------------------------------------- /include/ac_birth_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_birth_control.h -------------------------------------------------------------------------------- /include/ac_boat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_boat.h -------------------------------------------------------------------------------- /include/ac_boat_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_boat_demo.h -------------------------------------------------------------------------------- /include/ac_boxManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_boxManager.h -------------------------------------------------------------------------------- /include/ac_boxMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_boxMove.h -------------------------------------------------------------------------------- /include/ac_boxTrick01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_boxTrick01.h -------------------------------------------------------------------------------- /include/ac_br_shop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_br_shop.h -------------------------------------------------------------------------------- /include/ac_bridge_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_bridge_a.h -------------------------------------------------------------------------------- /include/ac_broker_design.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_broker_design.h -------------------------------------------------------------------------------- /include/ac_buggy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_buggy.h -------------------------------------------------------------------------------- /include/ac_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_common.h -------------------------------------------------------------------------------- /include/ac_conveni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_conveni.h -------------------------------------------------------------------------------- /include/ac_cottage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_cottage.h -------------------------------------------------------------------------------- /include/ac_count02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_count02.h -------------------------------------------------------------------------------- /include/ac_countdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_countdown.h -------------------------------------------------------------------------------- /include/ac_countdown_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_countdown_clip.h -------------------------------------------------------------------------------- /include/ac_countdown_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_countdown_npc0.h -------------------------------------------------------------------------------- /include/ac_countdown_npc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_countdown_npc1.h -------------------------------------------------------------------------------- /include/ac_depart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_depart.h -------------------------------------------------------------------------------- /include/ac_douzou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_douzou.h -------------------------------------------------------------------------------- /include/ac_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_dummy.h -------------------------------------------------------------------------------- /include/ac_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_dump.h -------------------------------------------------------------------------------- /include/ac_effectbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_effectbg.h -------------------------------------------------------------------------------- /include/ac_ev_angler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_angler.h -------------------------------------------------------------------------------- /include/ac_ev_artist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_artist.h -------------------------------------------------------------------------------- /include/ac_ev_broker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_broker.h -------------------------------------------------------------------------------- /include/ac_ev_broker2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_broker2.h -------------------------------------------------------------------------------- /include/ac_ev_castaway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_castaway.h -------------------------------------------------------------------------------- /include/ac_ev_designer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_designer.h -------------------------------------------------------------------------------- /include/ac_ev_dokutu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_dokutu.h -------------------------------------------------------------------------------- /include/ac_ev_dozaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_dozaemon.h -------------------------------------------------------------------------------- /include/ac_ev_ghost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_ghost.h -------------------------------------------------------------------------------- /include/ac_ev_gypsy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_gypsy.h -------------------------------------------------------------------------------- /include/ac_ev_kabuPeddler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_kabuPeddler.h -------------------------------------------------------------------------------- /include/ac_ev_majin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_majin.h -------------------------------------------------------------------------------- /include/ac_ev_miko.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_miko.h -------------------------------------------------------------------------------- /include/ac_ev_pumpkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_pumpkin.h -------------------------------------------------------------------------------- /include/ac_ev_santa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_santa.h -------------------------------------------------------------------------------- /include/ac_ev_soncho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_soncho.h -------------------------------------------------------------------------------- /include/ac_ev_soncho2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_soncho2.h -------------------------------------------------------------------------------- /include/ac_ev_turkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_turkey.h -------------------------------------------------------------------------------- /include/ac_ev_yomise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ev_yomise.h -------------------------------------------------------------------------------- /include/ac_event_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_event_manager.h -------------------------------------------------------------------------------- /include/ac_fallS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_fallS.h -------------------------------------------------------------------------------- /include/ac_fallSESW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_fallSESW.h -------------------------------------------------------------------------------- /include/ac_field_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_field_draw.h -------------------------------------------------------------------------------- /include/ac_fieldm_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_fieldm_draw.h -------------------------------------------------------------------------------- /include/ac_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_flag.h -------------------------------------------------------------------------------- /include/ac_furniture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_furniture.h -------------------------------------------------------------------------------- /include/ac_fuusen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_fuusen.h -------------------------------------------------------------------------------- /include/ac_garagara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_garagara.h -------------------------------------------------------------------------------- /include/ac_ghog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ghog.h -------------------------------------------------------------------------------- /include/ac_go_home_npc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_go_home_npc.h -------------------------------------------------------------------------------- /include/ac_goza.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_goza.h -------------------------------------------------------------------------------- /include/ac_groundhog_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_groundhog_npc0.h -------------------------------------------------------------------------------- /include/ac_gyo_kage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_gyo_kage.h -------------------------------------------------------------------------------- /include/ac_gyo_release.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_gyo_release.h -------------------------------------------------------------------------------- /include/ac_gyoei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_gyoei.h -------------------------------------------------------------------------------- /include/ac_gyoei_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_gyoei_h.h -------------------------------------------------------------------------------- /include/ac_halloween_npc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_halloween_npc.h -------------------------------------------------------------------------------- /include/ac_hanabi_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_hanabi_npc0.h -------------------------------------------------------------------------------- /include/ac_hanabi_npc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_hanabi_npc1.h -------------------------------------------------------------------------------- /include/ac_hanami_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_hanami_npc0.h -------------------------------------------------------------------------------- /include/ac_hanami_npc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_hanami_npc1.h -------------------------------------------------------------------------------- /include/ac_handOverItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_handOverItem.h -------------------------------------------------------------------------------- /include/ac_haniwa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_haniwa.h -------------------------------------------------------------------------------- /include/ac_harvest_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_harvest_npc0.h -------------------------------------------------------------------------------- /include/ac_harvest_npc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_harvest_npc1.h -------------------------------------------------------------------------------- /include/ac_hatumode_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_hatumode_npc0.h -------------------------------------------------------------------------------- /include/ac_house.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_house.h -------------------------------------------------------------------------------- /include/ac_house_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_house_clock.h -------------------------------------------------------------------------------- /include/ac_house_goki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_house_goki.h -------------------------------------------------------------------------------- /include/ac_htable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_htable.h -------------------------------------------------------------------------------- /include/ac_ins_amenbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_amenbo.h -------------------------------------------------------------------------------- /include/ac_ins_batta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_batta.h -------------------------------------------------------------------------------- /include/ac_ins_chou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_chou.h -------------------------------------------------------------------------------- /include/ac_ins_dango.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_dango.h -------------------------------------------------------------------------------- /include/ac_ins_goki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_goki.h -------------------------------------------------------------------------------- /include/ac_ins_hitodama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_hitodama.h -------------------------------------------------------------------------------- /include/ac_ins_hotaru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_hotaru.h -------------------------------------------------------------------------------- /include/ac_ins_ka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_ka.h -------------------------------------------------------------------------------- /include/ac_ins_kabuto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_kabuto.h -------------------------------------------------------------------------------- /include/ac_ins_kera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_kera.h -------------------------------------------------------------------------------- /include/ac_ins_mino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_mino.h -------------------------------------------------------------------------------- /include/ac_ins_semi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_semi.h -------------------------------------------------------------------------------- /include/ac_ins_tentou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_tentou.h -------------------------------------------------------------------------------- /include/ac_ins_tonbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ins_tonbo.h -------------------------------------------------------------------------------- /include/ac_insect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_insect.h -------------------------------------------------------------------------------- /include/ac_insect_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_insect_h.h -------------------------------------------------------------------------------- /include/ac_intro_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_intro_demo.h -------------------------------------------------------------------------------- /include/ac_kago.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_kago.h -------------------------------------------------------------------------------- /include/ac_kamakura.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_kamakura.h -------------------------------------------------------------------------------- /include/ac_kamakura_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_kamakura_npc0.h -------------------------------------------------------------------------------- /include/ac_koinobori.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_koinobori.h -------------------------------------------------------------------------------- /include/ac_lotus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_lotus.h -------------------------------------------------------------------------------- /include/ac_mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_mailbox.h -------------------------------------------------------------------------------- /include/ac_mbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_mbg.h -------------------------------------------------------------------------------- /include/ac_mikanbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_mikanbox.h -------------------------------------------------------------------------------- /include/ac_mikanbox_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_mikanbox_clip.h -------------------------------------------------------------------------------- /include/ac_mikuji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_mikuji.h -------------------------------------------------------------------------------- /include/ac_misin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_misin.h -------------------------------------------------------------------------------- /include/ac_misin_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_misin_clip.h -------------------------------------------------------------------------------- /include/ac_mscore_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_mscore_control.h -------------------------------------------------------------------------------- /include/ac_mural.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_mural.h -------------------------------------------------------------------------------- /include/ac_museum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_museum.h -------------------------------------------------------------------------------- /include/ac_museum_fish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_museum_fish.h -------------------------------------------------------------------------------- /include/ac_museum_fossil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_museum_fossil.h -------------------------------------------------------------------------------- /include/ac_museum_indoor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_museum_indoor.h -------------------------------------------------------------------------------- /include/ac_museum_insect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_museum_insect.h -------------------------------------------------------------------------------- /include/ac_museum_picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_museum_picture.h -------------------------------------------------------------------------------- /include/ac_my_house.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_my_house.h -------------------------------------------------------------------------------- /include/ac_my_indoor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_my_indoor.h -------------------------------------------------------------------------------- /include/ac_my_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_my_room.h -------------------------------------------------------------------------------- /include/ac_nameplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_nameplate.h -------------------------------------------------------------------------------- /include/ac_normal_npc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_normal_npc.h -------------------------------------------------------------------------------- /include/ac_npc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc.h -------------------------------------------------------------------------------- /include/ac_npc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc2.h -------------------------------------------------------------------------------- /include/ac_npc_anim_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_anim_def.h -------------------------------------------------------------------------------- /include/ac_npc_curator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_curator.h -------------------------------------------------------------------------------- /include/ac_npc_engineer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_engineer.h -------------------------------------------------------------------------------- /include/ac_npc_guide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_guide.h -------------------------------------------------------------------------------- /include/ac_npc_guide2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_guide2.h -------------------------------------------------------------------------------- /include/ac_npc_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_h.h -------------------------------------------------------------------------------- /include/ac_npc_hem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_hem.h -------------------------------------------------------------------------------- /include/ac_npc_majin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_majin.h -------------------------------------------------------------------------------- /include/ac_npc_majin2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_majin2.h -------------------------------------------------------------------------------- /include/ac_npc_majin3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_majin3.h -------------------------------------------------------------------------------- /include/ac_npc_majin4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_majin4.h -------------------------------------------------------------------------------- /include/ac_npc_majin5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_majin5.h -------------------------------------------------------------------------------- /include/ac_npc_mamedanuki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_mamedanuki.h -------------------------------------------------------------------------------- /include/ac_npc_mask_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_mask_cat.h -------------------------------------------------------------------------------- /include/ac_npc_mask_cat2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_mask_cat2.h -------------------------------------------------------------------------------- /include/ac_npc_needlework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_needlework.h -------------------------------------------------------------------------------- /include/ac_npc_p_sel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_p_sel.h -------------------------------------------------------------------------------- /include/ac_npc_p_sel2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_p_sel2.h -------------------------------------------------------------------------------- /include/ac_npc_police.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_police.h -------------------------------------------------------------------------------- /include/ac_npc_police2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_police2.h -------------------------------------------------------------------------------- /include/ac_npc_post_girl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_post_girl.h -------------------------------------------------------------------------------- /include/ac_npc_post_man.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_post_man.h -------------------------------------------------------------------------------- /include/ac_npc_rcn_guide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_rcn_guide.h -------------------------------------------------------------------------------- /include/ac_npc_rcn_guide2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_rcn_guide2.h -------------------------------------------------------------------------------- /include/ac_npc_restart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_restart.h -------------------------------------------------------------------------------- /include/ac_npc_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_rtc.h -------------------------------------------------------------------------------- /include/ac_npc_sendo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_sendo.h -------------------------------------------------------------------------------- /include/ac_npc_shasho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_shasho.h -------------------------------------------------------------------------------- /include/ac_npc_soncho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_soncho.h -------------------------------------------------------------------------------- /include/ac_npc_totakeke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_npc_totakeke.h -------------------------------------------------------------------------------- /include/ac_police_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_police_box.h -------------------------------------------------------------------------------- /include/ac_post_office.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_post_office.h -------------------------------------------------------------------------------- /include/ac_present_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_present_demo.h -------------------------------------------------------------------------------- /include/ac_present_npc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_present_npc.h -------------------------------------------------------------------------------- /include/ac_psnowman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_psnowman.h -------------------------------------------------------------------------------- /include/ac_pterminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_pterminal.h -------------------------------------------------------------------------------- /include/ac_quest_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_quest_manager.h -------------------------------------------------------------------------------- /include/ac_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_radio.h -------------------------------------------------------------------------------- /include/ac_reserve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_reserve.h -------------------------------------------------------------------------------- /include/ac_reset_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_reset_demo.h -------------------------------------------------------------------------------- /include/ac_ride_off_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_ride_off_demo.h -------------------------------------------------------------------------------- /include/ac_rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_rope.h -------------------------------------------------------------------------------- /include/ac_s_car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_s_car.h -------------------------------------------------------------------------------- /include/ac_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_sample.h -------------------------------------------------------------------------------- /include/ac_set_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_set_manager.h -------------------------------------------------------------------------------- /include/ac_set_ovl_gyoei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_set_ovl_gyoei.h -------------------------------------------------------------------------------- /include/ac_set_ovl_insect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_set_ovl_insect.h -------------------------------------------------------------------------------- /include/ac_shop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_shop.h -------------------------------------------------------------------------------- /include/ac_shop_design.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_shop_design.h -------------------------------------------------------------------------------- /include/ac_shop_goods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_shop_goods.h -------------------------------------------------------------------------------- /include/ac_shop_goods_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_shop_goods_h.h -------------------------------------------------------------------------------- /include/ac_shop_indoor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_shop_indoor.h -------------------------------------------------------------------------------- /include/ac_shop_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_shop_level.h -------------------------------------------------------------------------------- /include/ac_shop_manekin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_shop_manekin.h -------------------------------------------------------------------------------- /include/ac_shop_umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_shop_umbrella.h -------------------------------------------------------------------------------- /include/ac_shrine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_shrine.h -------------------------------------------------------------------------------- /include/ac_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_sign.h -------------------------------------------------------------------------------- /include/ac_snowman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_snowman.h -------------------------------------------------------------------------------- /include/ac_station.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_station.h -------------------------------------------------------------------------------- /include/ac_station_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_station_clip.h -------------------------------------------------------------------------------- /include/ac_structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_structure.h -------------------------------------------------------------------------------- /include/ac_super.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_super.h -------------------------------------------------------------------------------- /include/ac_t_anrium1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_anrium1.h -------------------------------------------------------------------------------- /include/ac_t_bag1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_bag1.h -------------------------------------------------------------------------------- /include/ac_t_bag2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_bag2.h -------------------------------------------------------------------------------- /include/ac_t_biscus1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_biscus1.h -------------------------------------------------------------------------------- /include/ac_t_biscus2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_biscus2.h -------------------------------------------------------------------------------- /include/ac_t_biscus3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_biscus3.h -------------------------------------------------------------------------------- /include/ac_t_biscus4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_biscus4.h -------------------------------------------------------------------------------- /include/ac_t_cobra1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_cobra1.h -------------------------------------------------------------------------------- /include/ac_t_cracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_cracker.h -------------------------------------------------------------------------------- /include/ac_t_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_flag.h -------------------------------------------------------------------------------- /include/ac_t_hanabi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_hanabi.h -------------------------------------------------------------------------------- /include/ac_t_hasu1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_hasu1.h -------------------------------------------------------------------------------- /include/ac_t_hat1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_hat1.h -------------------------------------------------------------------------------- /include/ac_t_hat2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_hat2.h -------------------------------------------------------------------------------- /include/ac_t_hat3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_hat3.h -------------------------------------------------------------------------------- /include/ac_t_keitai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_keitai.h -------------------------------------------------------------------------------- /include/ac_t_npc_sao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_npc_sao.h -------------------------------------------------------------------------------- /include/ac_t_pistol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_pistol.h -------------------------------------------------------------------------------- /include/ac_t_rei1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_rei1.h -------------------------------------------------------------------------------- /include/ac_t_rei2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_rei2.h -------------------------------------------------------------------------------- /include/ac_t_tama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_tama.h -------------------------------------------------------------------------------- /include/ac_t_tumbler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_tumbler.h -------------------------------------------------------------------------------- /include/ac_t_umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_umbrella.h -------------------------------------------------------------------------------- /include/ac_t_utiwa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_utiwa.h -------------------------------------------------------------------------------- /include/ac_t_zinnia1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_zinnia1.h -------------------------------------------------------------------------------- /include/ac_t_zinnia2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_t_zinnia2.h -------------------------------------------------------------------------------- /include/ac_taisou_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_taisou_npc0.h -------------------------------------------------------------------------------- /include/ac_tama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_tama.h -------------------------------------------------------------------------------- /include/ac_tamaire_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_tamaire_npc0.h -------------------------------------------------------------------------------- /include/ac_tamaire_npc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_tamaire_npc1.h -------------------------------------------------------------------------------- /include/ac_tent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_tent.h -------------------------------------------------------------------------------- /include/ac_tokyoso_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_tokyoso_npc0.h -------------------------------------------------------------------------------- /include/ac_tokyoso_npc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_tokyoso_npc1.h -------------------------------------------------------------------------------- /include/ac_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_tools.h -------------------------------------------------------------------------------- /include/ac_toudai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_toudai.h -------------------------------------------------------------------------------- /include/ac_train0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_train0.h -------------------------------------------------------------------------------- /include/ac_train1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_train1.h -------------------------------------------------------------------------------- /include/ac_train_door.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_train_door.h -------------------------------------------------------------------------------- /include/ac_train_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_train_window.h -------------------------------------------------------------------------------- /include/ac_tukimi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_tukimi.h -------------------------------------------------------------------------------- /include/ac_tukimi_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_tukimi_npc0.h -------------------------------------------------------------------------------- /include/ac_tukimi_npc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_tukimi_npc1.h -------------------------------------------------------------------------------- /include/ac_tunahiki_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_tunahiki_npc0.h -------------------------------------------------------------------------------- /include/ac_tunahiki_npc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_tunahiki_npc1.h -------------------------------------------------------------------------------- /include/ac_turi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_turi.h -------------------------------------------------------------------------------- /include/ac_turi_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_turi_clip.h -------------------------------------------------------------------------------- /include/ac_turi_npc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_turi_npc0.h -------------------------------------------------------------------------------- /include/ac_uki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_uki.h -------------------------------------------------------------------------------- /include/ac_weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_weather.h -------------------------------------------------------------------------------- /include/ac_weather_fine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_weather_fine.h -------------------------------------------------------------------------------- /include/ac_weather_leaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_weather_leaf.h -------------------------------------------------------------------------------- /include/ac_weather_rain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_weather_rain.h -------------------------------------------------------------------------------- /include/ac_weather_sakura.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_weather_sakura.h -------------------------------------------------------------------------------- /include/ac_weather_snow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_weather_snow.h -------------------------------------------------------------------------------- /include/ac_windmill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_windmill.h -------------------------------------------------------------------------------- /include/ac_yatai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ac_yatai.h -------------------------------------------------------------------------------- /include/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/audio.h -------------------------------------------------------------------------------- /include/audio_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/audio_defs.h -------------------------------------------------------------------------------- /include/bg_cherry_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/bg_cherry_item.h -------------------------------------------------------------------------------- /include/bg_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/bg_item.h -------------------------------------------------------------------------------- /include/bg_item_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/bg_item_h.h -------------------------------------------------------------------------------- /include/bg_police_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/bg_police_item.h -------------------------------------------------------------------------------- /include/bg_post_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/bg_post_item.h -------------------------------------------------------------------------------- /include/bg_winter_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/bg_winter_item.h -------------------------------------------------------------------------------- /include/bg_xmas_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/bg_xmas_item.h -------------------------------------------------------------------------------- /include/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/boot.h -------------------------------------------------------------------------------- /include/bootdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/bootdata.h -------------------------------------------------------------------------------- /include/c_keyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/c_keyframe.h -------------------------------------------------------------------------------- /include/cmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/cmath.h -------------------------------------------------------------------------------- /include/dataobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dataobject.h -------------------------------------------------------------------------------- /include/dolphin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin.h -------------------------------------------------------------------------------- /include/dolphin/PPCArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/PPCArch.h -------------------------------------------------------------------------------- /include/dolphin/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/ai.h -------------------------------------------------------------------------------- /include/dolphin/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/ar.h -------------------------------------------------------------------------------- /include/dolphin/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/card.h -------------------------------------------------------------------------------- /include/dolphin/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/db.h -------------------------------------------------------------------------------- /include/dolphin/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/dsp.h -------------------------------------------------------------------------------- /include/dolphin/dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/dsp/dsp.h -------------------------------------------------------------------------------- /include/dolphin/dvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/dvd.h -------------------------------------------------------------------------------- /include/dolphin/exi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/exi.h -------------------------------------------------------------------------------- /include/dolphin/gx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/gx.h -------------------------------------------------------------------------------- /include/dolphin/mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/mtx.h -------------------------------------------------------------------------------- /include/dolphin/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/os.h -------------------------------------------------------------------------------- /include/dolphin/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/pad.h -------------------------------------------------------------------------------- /include/dolphin/si.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/si.h -------------------------------------------------------------------------------- /include/dolphin/sipriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/sipriv.h -------------------------------------------------------------------------------- /include/dolphin/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/string.h -------------------------------------------------------------------------------- /include/dolphin/trk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/trk.h -------------------------------------------------------------------------------- /include/dolphin/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/types.h -------------------------------------------------------------------------------- /include/dolphin/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dolphin/vi.h -------------------------------------------------------------------------------- /include/dvderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/dvderr.h -------------------------------------------------------------------------------- /include/ef_lamp_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/ef_lamp_light.h -------------------------------------------------------------------------------- /include/evw_anime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/evw_anime.h -------------------------------------------------------------------------------- /include/executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/executor.h -------------------------------------------------------------------------------- /include/f_furniture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/f_furniture.h -------------------------------------------------------------------------------- /include/famicom_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/famicom_emu.h -------------------------------------------------------------------------------- /include/first_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/first_game.h -------------------------------------------------------------------------------- /include/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/game.h -------------------------------------------------------------------------------- /include/game_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/game_h.h -------------------------------------------------------------------------------- /include/gamealloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/gamealloc.h -------------------------------------------------------------------------------- /include/gfxalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/gfxalloc.h -------------------------------------------------------------------------------- /include/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/graph.h -------------------------------------------------------------------------------- /include/initial_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/initial_menu.h -------------------------------------------------------------------------------- /include/irqmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/irqmgr.h -------------------------------------------------------------------------------- /include/jaudio_NES/bx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/jaudio_NES/bx.h -------------------------------------------------------------------------------- /include/jaudio_NES/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/jaudio_NES/fat.h -------------------------------------------------------------------------------- /include/jaudio_NES/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/jaudio_NES/os.h -------------------------------------------------------------------------------- /include/jsyswrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/jsyswrap.h -------------------------------------------------------------------------------- /include/jsyswrap_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/jsyswrap_cpp.h -------------------------------------------------------------------------------- /include/lb_reki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/lb_reki.h -------------------------------------------------------------------------------- /include/lb_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/lb_rtc.h -------------------------------------------------------------------------------- /include/libc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/assert.h -------------------------------------------------------------------------------- /include/libc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/ctype.h -------------------------------------------------------------------------------- /include/libc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/errno.h -------------------------------------------------------------------------------- /include/libc/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/float.h -------------------------------------------------------------------------------- /include/libc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/limits.h -------------------------------------------------------------------------------- /include/libc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/math.h -------------------------------------------------------------------------------- /include/libc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/stdarg.h -------------------------------------------------------------------------------- /include/libc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/stddef.h -------------------------------------------------------------------------------- /include/libc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/stdint.h -------------------------------------------------------------------------------- /include/libc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/stdio.h -------------------------------------------------------------------------------- /include/libc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/stdlib.h -------------------------------------------------------------------------------- /include/libc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/string.h -------------------------------------------------------------------------------- /include/libc/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc/wchar.h -------------------------------------------------------------------------------- /include/libc64/aprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc64/aprintf.h -------------------------------------------------------------------------------- /include/libc64/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc64/malloc.h -------------------------------------------------------------------------------- /include/libc64/math64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc64/math64.h -------------------------------------------------------------------------------- /include/libc64/qrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc64/qrand.h -------------------------------------------------------------------------------- /include/libc64/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc64/sleep.h -------------------------------------------------------------------------------- /include/libc64/sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libc64/sprintf.h -------------------------------------------------------------------------------- /include/libu64/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libu64/debug.h -------------------------------------------------------------------------------- /include/libu64/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libu64/pad.h -------------------------------------------------------------------------------- /include/libultra/gu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libultra/gu.h -------------------------------------------------------------------------------- /include/libultra/os_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/libultra/os_pi.h -------------------------------------------------------------------------------- /include/m_actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_actor.h -------------------------------------------------------------------------------- /include/m_actor_shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_actor_shadow.h -------------------------------------------------------------------------------- /include/m_actor_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_actor_type.h -------------------------------------------------------------------------------- /include/m_address_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_address_ovl.h -------------------------------------------------------------------------------- /include/m_all_grow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_all_grow.h -------------------------------------------------------------------------------- /include/m_all_grow_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_all_grow_ovl.h -------------------------------------------------------------------------------- /include/m_bank_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_bank_ovl.h -------------------------------------------------------------------------------- /include/m_bank_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_bank_ovl_h.h -------------------------------------------------------------------------------- /include/m_banti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_banti.h -------------------------------------------------------------------------------- /include/m_bg_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_bg_item.h -------------------------------------------------------------------------------- /include/m_bg_tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_bg_tex.h -------------------------------------------------------------------------------- /include/m_bg_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_bg_type.h -------------------------------------------------------------------------------- /include/m_bgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_bgm.h -------------------------------------------------------------------------------- /include/m_birthday_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_birthday_ovl.h -------------------------------------------------------------------------------- /include/m_board_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_board_ovl.h -------------------------------------------------------------------------------- /include/m_board_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_board_ovl_h.h -------------------------------------------------------------------------------- /include/m_calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_calendar.h -------------------------------------------------------------------------------- /include/m_calendar_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_calendar_ovl.h -------------------------------------------------------------------------------- /include/m_camera2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_camera2.h -------------------------------------------------------------------------------- /include/m_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_card.h -------------------------------------------------------------------------------- /include/m_catalog_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_catalog_ovl.h -------------------------------------------------------------------------------- /include/m_choice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_choice.h -------------------------------------------------------------------------------- /include/m_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_clip.h -------------------------------------------------------------------------------- /include/m_cockroach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_cockroach.h -------------------------------------------------------------------------------- /include/m_collision_bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_collision_bg.h -------------------------------------------------------------------------------- /include/m_combi_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_combi_type.h -------------------------------------------------------------------------------- /include/m_common_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_common_data.h -------------------------------------------------------------------------------- /include/m_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_config.h -------------------------------------------------------------------------------- /include/m_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_controller.h -------------------------------------------------------------------------------- /include/m_cpak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_cpak.h -------------------------------------------------------------------------------- /include/m_cpedit_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_cpedit_ovl.h -------------------------------------------------------------------------------- /include/m_cpedit_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_cpedit_ovl_h.h -------------------------------------------------------------------------------- /include/m_cpmail_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_cpmail_ovl.h -------------------------------------------------------------------------------- /include/m_cpmail_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_cpmail_ovl_h.h -------------------------------------------------------------------------------- /include/m_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_debug.h -------------------------------------------------------------------------------- /include/m_debug_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_debug_mode.h -------------------------------------------------------------------------------- /include/m_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_demo.h -------------------------------------------------------------------------------- /include/m_design_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_design_ovl.h -------------------------------------------------------------------------------- /include/m_design_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_design_ovl_h.h -------------------------------------------------------------------------------- /include/m_diary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_diary.h -------------------------------------------------------------------------------- /include/m_diary_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_diary_ovl.h -------------------------------------------------------------------------------- /include/m_diary_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_diary_ovl_h.h -------------------------------------------------------------------------------- /include/m_eappli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_eappli.h -------------------------------------------------------------------------------- /include/m_editor_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_editor_ovl.h -------------------------------------------------------------------------------- /include/m_editor_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_editor_ovl_h.h -------------------------------------------------------------------------------- /include/m_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_event.h -------------------------------------------------------------------------------- /include/m_fbdemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_fbdemo.h -------------------------------------------------------------------------------- /include/m_fbdemo_fade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_fbdemo_fade.h -------------------------------------------------------------------------------- /include/m_fbdemo_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_fbdemo_wipe.h -------------------------------------------------------------------------------- /include/m_fbdemo_wipe1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_fbdemo_wipe1.h -------------------------------------------------------------------------------- /include/m_fg_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_fg_type.h -------------------------------------------------------------------------------- /include/m_field_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_field_info.h -------------------------------------------------------------------------------- /include/m_field_make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_field_make.h -------------------------------------------------------------------------------- /include/m_fishrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_fishrecord.h -------------------------------------------------------------------------------- /include/m_flashrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_flashrom.h -------------------------------------------------------------------------------- /include/m_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_font.h -------------------------------------------------------------------------------- /include/m_ftr_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_ftr_def.h -------------------------------------------------------------------------------- /include/m_fuusen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_fuusen.h -------------------------------------------------------------------------------- /include/m_game_dlftbls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_game_dlftbls.h -------------------------------------------------------------------------------- /include/m_gba_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_gba_ovl.h -------------------------------------------------------------------------------- /include/m_gba_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_gba_ovl_h.h -------------------------------------------------------------------------------- /include/m_hand_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_hand_ovl.h -------------------------------------------------------------------------------- /include/m_hand_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_hand_ovl_h.h -------------------------------------------------------------------------------- /include/m_handbill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_handbill.h -------------------------------------------------------------------------------- /include/m_haniwa_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_haniwa_ovl.h -------------------------------------------------------------------------------- /include/m_haniwa_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_haniwa_ovl_h.h -------------------------------------------------------------------------------- /include/m_hboard_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_hboard_ovl.h -------------------------------------------------------------------------------- /include/m_home.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_home.h -------------------------------------------------------------------------------- /include/m_home_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_home_h.h -------------------------------------------------------------------------------- /include/m_house.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_house.h -------------------------------------------------------------------------------- /include/m_huusui_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_huusui_room.h -------------------------------------------------------------------------------- /include/m_island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_island.h -------------------------------------------------------------------------------- /include/m_item_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_item_debug.h -------------------------------------------------------------------------------- /include/m_item_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_item_name.h -------------------------------------------------------------------------------- /include/m_kabu_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_kabu_manager.h -------------------------------------------------------------------------------- /include/m_kankyo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_kankyo.h -------------------------------------------------------------------------------- /include/m_land.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_land.h -------------------------------------------------------------------------------- /include/m_land_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_land_h.h -------------------------------------------------------------------------------- /include/m_ledit_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_ledit_ovl.h -------------------------------------------------------------------------------- /include/m_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_lib.h -------------------------------------------------------------------------------- /include/m_lights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_lights.h -------------------------------------------------------------------------------- /include/m_mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_mail.h -------------------------------------------------------------------------------- /include/m_mail_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_mail_check.h -------------------------------------------------------------------------------- /include/m_mailbox_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_mailbox_ovl.h -------------------------------------------------------------------------------- /include/m_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_malloc.h -------------------------------------------------------------------------------- /include/m_map_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_map_ovl.h -------------------------------------------------------------------------------- /include/m_map_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_map_ovl_h.h -------------------------------------------------------------------------------- /include/m_mark_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_mark_room.h -------------------------------------------------------------------------------- /include/m_mask_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_mask_cat.h -------------------------------------------------------------------------------- /include/m_melody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_melody.h -------------------------------------------------------------------------------- /include/m_mscore_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_mscore_ovl.h -------------------------------------------------------------------------------- /include/m_mscore_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_mscore_ovl_h.h -------------------------------------------------------------------------------- /include/m_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_msg.h -------------------------------------------------------------------------------- /include/m_msg_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_msg_data.h -------------------------------------------------------------------------------- /include/m_msg_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_msg_enum.h -------------------------------------------------------------------------------- /include/m_museum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_museum.h -------------------------------------------------------------------------------- /include/m_mushroom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_mushroom.h -------------------------------------------------------------------------------- /include/m_music_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_music_ovl.h -------------------------------------------------------------------------------- /include/m_music_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_music_ovl_h.h -------------------------------------------------------------------------------- /include/m_name_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_name_table.h -------------------------------------------------------------------------------- /include/m_needlework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_needlework.h -------------------------------------------------------------------------------- /include/m_nmibuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_nmibuf.h -------------------------------------------------------------------------------- /include/m_notice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_notice.h -------------------------------------------------------------------------------- /include/m_notice_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_notice_ovl.h -------------------------------------------------------------------------------- /include/m_notice_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_notice_ovl_h.h -------------------------------------------------------------------------------- /include/m_npc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_npc.h -------------------------------------------------------------------------------- /include/m_npc_schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_npc_schedule.h -------------------------------------------------------------------------------- /include/m_npc_walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_npc_walk.h -------------------------------------------------------------------------------- /include/m_olib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_olib.h -------------------------------------------------------------------------------- /include/m_pause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_pause.h -------------------------------------------------------------------------------- /include/m_personal_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_personal_id.h -------------------------------------------------------------------------------- /include/m_play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_play.h -------------------------------------------------------------------------------- /include/m_play_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_play_h.h -------------------------------------------------------------------------------- /include/m_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_player.h -------------------------------------------------------------------------------- /include/m_player_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_player_call.h -------------------------------------------------------------------------------- /include/m_player_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_player_lib.h -------------------------------------------------------------------------------- /include/m_police_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_police_box.h -------------------------------------------------------------------------------- /include/m_post_office.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_post_office.h -------------------------------------------------------------------------------- /include/m_prenmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_prenmi.h -------------------------------------------------------------------------------- /include/m_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_private.h -------------------------------------------------------------------------------- /include/m_private_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_private_h.h -------------------------------------------------------------------------------- /include/m_quest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_quest.h -------------------------------------------------------------------------------- /include/m_random_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_random_field.h -------------------------------------------------------------------------------- /include/m_rcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_rcp.h -------------------------------------------------------------------------------- /include/m_repay_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_repay_ovl.h -------------------------------------------------------------------------------- /include/m_repay_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_repay_ovl_h.h -------------------------------------------------------------------------------- /include/m_roll_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_roll_lib.h -------------------------------------------------------------------------------- /include/m_room_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_room_type.h -------------------------------------------------------------------------------- /include/m_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_scene.h -------------------------------------------------------------------------------- /include/m_scene_ftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_scene_ftr.h -------------------------------------------------------------------------------- /include/m_scene_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_scene_table.h -------------------------------------------------------------------------------- /include/m_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_select.h -------------------------------------------------------------------------------- /include/m_shop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_shop.h -------------------------------------------------------------------------------- /include/m_skin_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_skin_matrix.h -------------------------------------------------------------------------------- /include/m_snowman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_snowman.h -------------------------------------------------------------------------------- /include/m_soncho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_soncho.h -------------------------------------------------------------------------------- /include/m_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_string.h -------------------------------------------------------------------------------- /include/m_string_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_string_data.h -------------------------------------------------------------------------------- /include/m_submenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_submenu.h -------------------------------------------------------------------------------- /include/m_submenu_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_submenu_ovl.h -------------------------------------------------------------------------------- /include/m_tag_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_tag_ovl.h -------------------------------------------------------------------------------- /include/m_tag_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_tag_ovl_h.h -------------------------------------------------------------------------------- /include/m_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_time.h -------------------------------------------------------------------------------- /include/m_timeIn_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_timeIn_ovl.h -------------------------------------------------------------------------------- /include/m_timeIn_ovl_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_timeIn_ovl_h.h -------------------------------------------------------------------------------- /include/m_titledemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_titledemo.h -------------------------------------------------------------------------------- /include/m_trademark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_trademark.h -------------------------------------------------------------------------------- /include/m_vibctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_vibctl.h -------------------------------------------------------------------------------- /include/m_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_view.h -------------------------------------------------------------------------------- /include/m_warning_ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/m_warning_ovl.h -------------------------------------------------------------------------------- /include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/macros.h -------------------------------------------------------------------------------- /include/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/macros.inc -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/main.h -------------------------------------------------------------------------------- /include/nintendo_hi_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/nintendo_hi_0.h -------------------------------------------------------------------------------- /include/padmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/padmgr.h -------------------------------------------------------------------------------- /include/player_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/player_select.h -------------------------------------------------------------------------------- /include/random_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/random_field.h -------------------------------------------------------------------------------- /include/s_cpak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/s_cpak.h -------------------------------------------------------------------------------- /include/save_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/save_menu.h -------------------------------------------------------------------------------- /include/second_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/second_game.h -------------------------------------------------------------------------------- /include/sys_dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/sys_dynamic.h -------------------------------------------------------------------------------- /include/sys_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/sys_math.h -------------------------------------------------------------------------------- /include/sys_math3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/sys_math3d.h -------------------------------------------------------------------------------- /include/sys_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/sys_matrix.h -------------------------------------------------------------------------------- /include/sys_romcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/sys_romcheck.h -------------------------------------------------------------------------------- /include/sys_stacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/sys_stacks.h -------------------------------------------------------------------------------- /include/sys_ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/sys_ucode.h -------------------------------------------------------------------------------- /include/sys_vimgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/sys_vimgr.h -------------------------------------------------------------------------------- /include/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/terminal.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/types.h -------------------------------------------------------------------------------- /include/va_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/va_args.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/version.h -------------------------------------------------------------------------------- /include/zurumode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/include/zurumode.h -------------------------------------------------------------------------------- /orig/GAFE01_00/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orig/GAFU01_00/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AUS/game/m_collision_bg_rewrite.c_inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AUS/game/m_collision_bg_water.c_inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/PreRender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/PreRender.c -------------------------------------------------------------------------------- /src/THA_GA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/THA_GA.c -------------------------------------------------------------------------------- /src/TwoHeadArena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/TwoHeadArena.c -------------------------------------------------------------------------------- /src/actor/ac_airplane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_airplane.c -------------------------------------------------------------------------------- /src/actor/ac_ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_ant.c -------------------------------------------------------------------------------- /src/actor/ac_ball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_ball.c -------------------------------------------------------------------------------- /src/actor/ac_balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_balloon.c -------------------------------------------------------------------------------- /src/actor/ac_bee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_bee.c -------------------------------------------------------------------------------- /src/actor/ac_boat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_boat.c -------------------------------------------------------------------------------- /src/actor/ac_boat_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_boat_demo.c -------------------------------------------------------------------------------- /src/actor/ac_boxMove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_boxMove.c -------------------------------------------------------------------------------- /src/actor/ac_br_shop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_br_shop.c -------------------------------------------------------------------------------- /src/actor/ac_bridge_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_bridge_a.c -------------------------------------------------------------------------------- /src/actor/ac_buggy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_buggy.c -------------------------------------------------------------------------------- /src/actor/ac_conveni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_conveni.c -------------------------------------------------------------------------------- /src/actor/ac_cottage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_cottage.c -------------------------------------------------------------------------------- /src/actor/ac_count02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_count02.c -------------------------------------------------------------------------------- /src/actor/ac_countdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_countdown.c -------------------------------------------------------------------------------- /src/actor/ac_depart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_depart.c -------------------------------------------------------------------------------- /src/actor/ac_douzou.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_douzou.c -------------------------------------------------------------------------------- /src/actor/ac_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_dummy.c -------------------------------------------------------------------------------- /src/actor/ac_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_dump.c -------------------------------------------------------------------------------- /src/actor/ac_effectbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_effectbg.c -------------------------------------------------------------------------------- /src/actor/ac_fallS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_fallS.c -------------------------------------------------------------------------------- /src/actor/ac_fallSESW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_fallSESW.c -------------------------------------------------------------------------------- /src/actor/ac_flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_flag.c -------------------------------------------------------------------------------- /src/actor/ac_fuusen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_fuusen.c -------------------------------------------------------------------------------- /src/actor/ac_garagara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_garagara.c -------------------------------------------------------------------------------- /src/actor/ac_ghog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_ghog.c -------------------------------------------------------------------------------- /src/actor/ac_goza.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_goza.c -------------------------------------------------------------------------------- /src/actor/ac_gyo_kage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_gyo_kage.c -------------------------------------------------------------------------------- /src/actor/ac_gyo_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_gyo_test.c -------------------------------------------------------------------------------- /src/actor/ac_gyoei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_gyoei.c -------------------------------------------------------------------------------- /src/actor/ac_haniwa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_haniwa.c -------------------------------------------------------------------------------- /src/actor/ac_house.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_house.c -------------------------------------------------------------------------------- /src/actor/ac_htable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_htable.c -------------------------------------------------------------------------------- /src/actor/ac_ins_batta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_ins_batta.c -------------------------------------------------------------------------------- /src/actor/ac_ins_chou.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_ins_chou.c -------------------------------------------------------------------------------- /src/actor/ac_ins_dango.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_ins_dango.c -------------------------------------------------------------------------------- /src/actor/ac_ins_goki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_ins_goki.c -------------------------------------------------------------------------------- /src/actor/ac_ins_ka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_ins_ka.c -------------------------------------------------------------------------------- /src/actor/ac_ins_kera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_ins_kera.c -------------------------------------------------------------------------------- /src/actor/ac_ins_mino.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_ins_mino.c -------------------------------------------------------------------------------- /src/actor/ac_ins_semi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_ins_semi.c -------------------------------------------------------------------------------- /src/actor/ac_ins_tonbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_ins_tonbo.c -------------------------------------------------------------------------------- /src/actor/ac_insect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_insect.c -------------------------------------------------------------------------------- /src/actor/ac_kago.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_kago.c -------------------------------------------------------------------------------- /src/actor/ac_kamakura.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_kamakura.c -------------------------------------------------------------------------------- /src/actor/ac_koinobori.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_koinobori.c -------------------------------------------------------------------------------- /src/actor/ac_lotus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_lotus.c -------------------------------------------------------------------------------- /src/actor/ac_mailbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_mailbox.c -------------------------------------------------------------------------------- /src/actor/ac_mbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_mbg.c -------------------------------------------------------------------------------- /src/actor/ac_mikanbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_mikanbox.c -------------------------------------------------------------------------------- /src/actor/ac_mikuji.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_mikuji.c -------------------------------------------------------------------------------- /src/actor/ac_misin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_misin.c -------------------------------------------------------------------------------- /src/actor/ac_mural.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_mural.c -------------------------------------------------------------------------------- /src/actor/ac_museum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_museum.c -------------------------------------------------------------------------------- /src/actor/ac_my_house.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_my_house.c -------------------------------------------------------------------------------- /src/actor/ac_my_indoor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_my_indoor.c -------------------------------------------------------------------------------- /src/actor/ac_my_room.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_my_room.c -------------------------------------------------------------------------------- /src/actor/ac_nameplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_nameplate.c -------------------------------------------------------------------------------- /src/actor/ac_psnowman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_psnowman.c -------------------------------------------------------------------------------- /src/actor/ac_pterminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_pterminal.c -------------------------------------------------------------------------------- /src/actor/ac_radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_radio.c -------------------------------------------------------------------------------- /src/actor/ac_reserve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_reserve.c -------------------------------------------------------------------------------- /src/actor/ac_rope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_rope.c -------------------------------------------------------------------------------- /src/actor/ac_s_car.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_s_car.c -------------------------------------------------------------------------------- /src/actor/ac_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_sample.c -------------------------------------------------------------------------------- /src/actor/ac_shop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_shop.c -------------------------------------------------------------------------------- /src/actor/ac_shrine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_shrine.c -------------------------------------------------------------------------------- /src/actor/ac_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_sign.c -------------------------------------------------------------------------------- /src/actor/ac_snowman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_snowman.c -------------------------------------------------------------------------------- /src/actor/ac_station.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_station.c -------------------------------------------------------------------------------- /src/actor/ac_structure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_structure.c -------------------------------------------------------------------------------- /src/actor/ac_super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_super.c -------------------------------------------------------------------------------- /src/actor/ac_tama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_tama.c -------------------------------------------------------------------------------- /src/actor/ac_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_tent.c -------------------------------------------------------------------------------- /src/actor/ac_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_tools.c -------------------------------------------------------------------------------- /src/actor/ac_toudai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_toudai.c -------------------------------------------------------------------------------- /src/actor/ac_train0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_train0.c -------------------------------------------------------------------------------- /src/actor/ac_train1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_train1.c -------------------------------------------------------------------------------- /src/actor/ac_tukimi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_tukimi.c -------------------------------------------------------------------------------- /src/actor/ac_turi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_turi.c -------------------------------------------------------------------------------- /src/actor/ac_uki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_uki.c -------------------------------------------------------------------------------- /src/actor/ac_weather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_weather.c -------------------------------------------------------------------------------- /src/actor/ac_windmill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_windmill.c -------------------------------------------------------------------------------- /src/actor/ac_yatai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/ac_yatai.c -------------------------------------------------------------------------------- /src/actor/npc/ac_npc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/npc/ac_npc.c -------------------------------------------------------------------------------- /src/actor/npc/ac_npc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/actor/npc/ac_npc2.c -------------------------------------------------------------------------------- /src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/audio.c -------------------------------------------------------------------------------- /src/bg_item/bg_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/bg_item/bg_item.c -------------------------------------------------------------------------------- /src/c_keyframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/c_keyframe.c -------------------------------------------------------------------------------- /src/data/item/ftr_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/item/ftr_list.c -------------------------------------------------------------------------------- /src/data/item/md_price.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/item/md_price.c -------------------------------------------------------------------------------- /src/data/model/act_ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/act_ant.c -------------------------------------------------------------------------------- /src/data/model/act_bee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/act_bee.c -------------------------------------------------------------------------------- /src/data/model/att_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/att_win.c -------------------------------------------------------------------------------- /src/data/model/bir_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/bir_win.c -------------------------------------------------------------------------------- /src/data/model/cad_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/cad_win.c -------------------------------------------------------------------------------- /src/data/model/cal_nen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/cal_nen.c -------------------------------------------------------------------------------- /src/data/model/cal_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/cal_win.c -------------------------------------------------------------------------------- /src/data/model/cam_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/cam_win.c -------------------------------------------------------------------------------- /src/data/model/clk_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/clk_win.c -------------------------------------------------------------------------------- /src/data/model/darrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/darrow.c -------------------------------------------------------------------------------- /src/data/model/des_sen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/des_sen.c -------------------------------------------------------------------------------- /src/data/model/des_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/des_win.c -------------------------------------------------------------------------------- /src/data/model/dia_att.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/dia_att.c -------------------------------------------------------------------------------- /src/data/model/dia_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/dia_win.c -------------------------------------------------------------------------------- /src/data/model/dna_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/dna_win.c -------------------------------------------------------------------------------- /src/data/model/ef_axe1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/ef_axe1.c -------------------------------------------------------------------------------- /src/data/model/ef_coin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/ef_coin.c -------------------------------------------------------------------------------- /src/data/model/ef_kore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/ef_kore.c -------------------------------------------------------------------------------- /src/data/model/f_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/f_tree.c -------------------------------------------------------------------------------- /src/data/model/f_tree1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/f_tree1.c -------------------------------------------------------------------------------- /src/data/model/f_tree2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/f_tree2.c -------------------------------------------------------------------------------- /src/data/model/f_tree3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/f_tree3.c -------------------------------------------------------------------------------- /src/data/model/f_tree4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/f_tree4.c -------------------------------------------------------------------------------- /src/data/model/f_tree5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/f_tree5.c -------------------------------------------------------------------------------- /src/data/model/fki_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/fki_win.c -------------------------------------------------------------------------------- /src/data/model/fkm_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/fkm_win.c -------------------------------------------------------------------------------- /src/data/model/gba_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/gba_win.c -------------------------------------------------------------------------------- /src/data/model/glider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/glider.c -------------------------------------------------------------------------------- /src/data/model/hni_den.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/hni_den.c -------------------------------------------------------------------------------- /src/data/model/hni_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/hni_win.c -------------------------------------------------------------------------------- /src/data/model/inv_mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/inv_mb.c -------------------------------------------------------------------------------- /src/data/model/kan_eki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/kan_eki.c -------------------------------------------------------------------------------- /src/data/model/kan_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/kan_win.c -------------------------------------------------------------------------------- /src/data/model/kei_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/kei_win.c -------------------------------------------------------------------------------- /src/data/model/kti_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/kti_win.c -------------------------------------------------------------------------------- /src/data/model/lat_mes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/lat_mes.c -------------------------------------------------------------------------------- /src/data/model/lat_sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/lat_sp.c -------------------------------------------------------------------------------- /src/data/model/mny_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/mny_win.c -------------------------------------------------------------------------------- /src/data/model/mra_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/mra_win.c -------------------------------------------------------------------------------- /src/data/model/mus_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/mus_win.c -------------------------------------------------------------------------------- /src/data/model/nam_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/nam_win.c -------------------------------------------------------------------------------- /src/data/model/onp_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/onp_win.c -------------------------------------------------------------------------------- /src/data/model/pas_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/pas_win.c -------------------------------------------------------------------------------- /src/data/model/pos_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/pos_win.c -------------------------------------------------------------------------------- /src/data/model/pwd_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/pwd_win.c -------------------------------------------------------------------------------- /src/data/model/req_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/req_win.c -------------------------------------------------------------------------------- /src/data/model/rst_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/rst_win.c -------------------------------------------------------------------------------- /src/data/model/sav_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/sav_win.c -------------------------------------------------------------------------------- /src/data/model/sen_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/sen_win.c -------------------------------------------------------------------------------- /src/data/model/shi_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/shi_win.c -------------------------------------------------------------------------------- /src/data/model/tim_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/tim_win.c -------------------------------------------------------------------------------- /src/data/model/tyo_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/model/tyo_win.c -------------------------------------------------------------------------------- /src/data/npc/grow_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/npc/grow_list.c -------------------------------------------------------------------------------- /src/data/npc/npc_1_a1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/npc/npc_1_a1.c -------------------------------------------------------------------------------- /src/data/npc/npc_1_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/npc/npc_1_a2.c -------------------------------------------------------------------------------- /src/data/npc/npc_1_ha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/npc/npc_1_ha1.c -------------------------------------------------------------------------------- /src/data/npc/npc_1_ha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/npc/npc_1_ha2.c -------------------------------------------------------------------------------- /src/data/scene/buggy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/scene/buggy.c -------------------------------------------------------------------------------- /src/data/scene/shop01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/scene/shop01.c -------------------------------------------------------------------------------- /src/data/scene/shop02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/scene/shop02.c -------------------------------------------------------------------------------- /src/data/scene/shop03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/scene/shop03.c -------------------------------------------------------------------------------- /src/data/scene/tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/scene/tent.c -------------------------------------------------------------------------------- /src/data/scene/test01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/scene/test01.c -------------------------------------------------------------------------------- /src/data/scene/test02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/scene/test02.c -------------------------------------------------------------------------------- /src/data/scene/test03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/scene/test03.c -------------------------------------------------------------------------------- /src/data/scene/test04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/scene/test04.c -------------------------------------------------------------------------------- /src/data/scene/test05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/data/scene/test05.c -------------------------------------------------------------------------------- /src/effect/ef_ami_mizu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_ami_mizu.c -------------------------------------------------------------------------------- /src/effect/ef_ase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_ase.c -------------------------------------------------------------------------------- /src/effect/ef_ase2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_ase2.c -------------------------------------------------------------------------------- /src/effect/ef_ase_ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_ase_ch.c -------------------------------------------------------------------------------- /src/effect/ef_bubu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_bubu.c -------------------------------------------------------------------------------- /src/effect/ef_buruburu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_buruburu.c -------------------------------------------------------------------------------- /src/effect/ef_clacker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_clacker.c -------------------------------------------------------------------------------- /src/effect/ef_coin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_coin.c -------------------------------------------------------------------------------- /src/effect/ef_dig_hole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_dig_hole.c -------------------------------------------------------------------------------- /src/effect/ef_dig_mud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_dig_mud.c -------------------------------------------------------------------------------- /src/effect/ef_doyon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_doyon.c -------------------------------------------------------------------------------- /src/effect/ef_dust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_dust.c -------------------------------------------------------------------------------- /src/effect/ef_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_flash.c -------------------------------------------------------------------------------- /src/effect/ef_gimonhu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_gimonhu.c -------------------------------------------------------------------------------- /src/effect/ef_goki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_goki.c -------------------------------------------------------------------------------- /src/effect/ef_ha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_ha.c -------------------------------------------------------------------------------- /src/effect/ef_hanabira.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_hanabira.c -------------------------------------------------------------------------------- /src/effect/ef_hanatiri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_hanatiri.c -------------------------------------------------------------------------------- /src/effect/ef_ikigire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_ikigire.c -------------------------------------------------------------------------------- /src/effect/ef_kangaeru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_kangaeru.c -------------------------------------------------------------------------------- /src/effect/ef_kantanhu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_kantanhu.c -------------------------------------------------------------------------------- /src/effect/ef_kasamizu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_kasamizu.c -------------------------------------------------------------------------------- /src/effect/ef_kaze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_kaze.c -------------------------------------------------------------------------------- /src/effect/ef_kigae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_kigae.c -------------------------------------------------------------------------------- /src/effect/ef_kikuzu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_kikuzu.c -------------------------------------------------------------------------------- /src/effect/ef_killer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_killer.c -------------------------------------------------------------------------------- /src/effect/ef_konpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_konpu.c -------------------------------------------------------------------------------- /src/effect/ef_kpun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_kpun.c -------------------------------------------------------------------------------- /src/effect/ef_lovelove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_lovelove.c -------------------------------------------------------------------------------- /src/effect/ef_make_hem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_make_hem.c -------------------------------------------------------------------------------- /src/effect/ef_mizutama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_mizutama.c -------------------------------------------------------------------------------- /src/effect/ef_motiyuge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_motiyuge.c -------------------------------------------------------------------------------- /src/effect/ef_muka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_muka.c -------------------------------------------------------------------------------- /src/effect/ef_naku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_naku.c -------------------------------------------------------------------------------- /src/effect/ef_namida.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_namida.c -------------------------------------------------------------------------------- /src/effect/ef_neboke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_neboke.c -------------------------------------------------------------------------------- /src/effect/ef_ongen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_ongen.c -------------------------------------------------------------------------------- /src/effect/ef_otikomi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_otikomi.c -------------------------------------------------------------------------------- /src/effect/ef_otosiana.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_otosiana.c -------------------------------------------------------------------------------- /src/effect/ef_pun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_pun.c -------------------------------------------------------------------------------- /src/effect/ef_pun_yuge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_pun_yuge.c -------------------------------------------------------------------------------- /src/effect/ef_shock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_shock.c -------------------------------------------------------------------------------- /src/effect/ef_shooting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_shooting.c -------------------------------------------------------------------------------- /src/effect/ef_sibuki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_sibuki.c -------------------------------------------------------------------------------- /src/effect/ef_situren.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_situren.c -------------------------------------------------------------------------------- /src/effect/ef_slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_slip.c -------------------------------------------------------------------------------- /src/effect/ef_steam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_steam.c -------------------------------------------------------------------------------- /src/effect/ef_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_string.c -------------------------------------------------------------------------------- /src/effect/ef_taberu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_taberu.c -------------------------------------------------------------------------------- /src/effect/ef_takurami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_takurami.c -------------------------------------------------------------------------------- /src/effect/ef_tamaire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_tamaire.c -------------------------------------------------------------------------------- /src/effect/ef_tape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_tape.c -------------------------------------------------------------------------------- /src/effect/ef_tumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_tumble.c -------------------------------------------------------------------------------- /src/effect/ef_uranai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_uranai.c -------------------------------------------------------------------------------- /src/effect/ef_warau.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_warau.c -------------------------------------------------------------------------------- /src/effect/ef_yukidama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_yukidama.c -------------------------------------------------------------------------------- /src/effect/ef_yukihane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/effect/ef_yukihane.c -------------------------------------------------------------------------------- /src/ev_cherry_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/ev_cherry_manager.c -------------------------------------------------------------------------------- /src/evw_anime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/evw_anime.c -------------------------------------------------------------------------------- /src/executor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/executor.c -------------------------------------------------------------------------------- /src/f_furniture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/f_furniture.c -------------------------------------------------------------------------------- /src/famicom_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/famicom_emu.c -------------------------------------------------------------------------------- /src/first_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/first_game.c -------------------------------------------------------------------------------- /src/furniture/ac_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/furniture/ac_dummy.c -------------------------------------------------------------------------------- /src/furniture/ac_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/furniture/ac_tool.c -------------------------------------------------------------------------------- /src/furniture/ac_utiwa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/furniture/ac_utiwa.c -------------------------------------------------------------------------------- /src/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game.c -------------------------------------------------------------------------------- /src/game/m_actor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_actor.c -------------------------------------------------------------------------------- /src/game/m_address_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_address_ovl.c -------------------------------------------------------------------------------- /src/game/m_all_grow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_all_grow.c -------------------------------------------------------------------------------- /src/game/m_bank_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_bank_ovl.c -------------------------------------------------------------------------------- /src/game/m_banti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_banti.c -------------------------------------------------------------------------------- /src/game/m_bg_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_bg_item.c -------------------------------------------------------------------------------- /src/game/m_bg_tex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_bg_tex.c -------------------------------------------------------------------------------- /src/game/m_bgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_bgm.c -------------------------------------------------------------------------------- /src/game/m_board_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_board_ovl.c -------------------------------------------------------------------------------- /src/game/m_calendar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_calendar.c -------------------------------------------------------------------------------- /src/game/m_camera2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_camera2.c -------------------------------------------------------------------------------- /src/game/m_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_card.c -------------------------------------------------------------------------------- /src/game/m_catalog_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_catalog_ovl.c -------------------------------------------------------------------------------- /src/game/m_choice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_choice.c -------------------------------------------------------------------------------- /src/game/m_clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_clip.c -------------------------------------------------------------------------------- /src/game/m_cockroach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_cockroach.c -------------------------------------------------------------------------------- /src/game/m_common_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_common_data.c -------------------------------------------------------------------------------- /src/game/m_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_controller.c -------------------------------------------------------------------------------- /src/game/m_cpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_cpak.c -------------------------------------------------------------------------------- /src/game/m_cpedit_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_cpedit_ovl.c -------------------------------------------------------------------------------- /src/game/m_cpmail_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_cpmail_ovl.c -------------------------------------------------------------------------------- /src/game/m_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_debug.c -------------------------------------------------------------------------------- /src/game/m_debug_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_debug_mode.c -------------------------------------------------------------------------------- /src/game/m_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_demo.c -------------------------------------------------------------------------------- /src/game/m_design_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_design_ovl.c -------------------------------------------------------------------------------- /src/game/m_diary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_diary.c -------------------------------------------------------------------------------- /src/game/m_diary_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_diary_ovl.c -------------------------------------------------------------------------------- /src/game/m_eappli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_eappli.c -------------------------------------------------------------------------------- /src/game/m_editor_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_editor_ovl.c -------------------------------------------------------------------------------- /src/game/m_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_event.c -------------------------------------------------------------------------------- /src/game/m_fbdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_fbdemo.c -------------------------------------------------------------------------------- /src/game/m_fbdemo_fade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_fbdemo_fade.c -------------------------------------------------------------------------------- /src/game/m_field_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_field_info.c -------------------------------------------------------------------------------- /src/game/m_field_make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_field_make.c -------------------------------------------------------------------------------- /src/game/m_fishrecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_fishrecord.c -------------------------------------------------------------------------------- /src/game/m_flashrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_flashrom.c -------------------------------------------------------------------------------- /src/game/m_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_font.c -------------------------------------------------------------------------------- /src/game/m_fuusen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_fuusen.c -------------------------------------------------------------------------------- /src/game/m_gba_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_gba_ovl.c -------------------------------------------------------------------------------- /src/game/m_hand_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_hand_ovl.c -------------------------------------------------------------------------------- /src/game/m_handbill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_handbill.c -------------------------------------------------------------------------------- /src/game/m_haniwa_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_haniwa_ovl.c -------------------------------------------------------------------------------- /src/game/m_hboard_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_hboard_ovl.c -------------------------------------------------------------------------------- /src/game/m_home.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_home.c -------------------------------------------------------------------------------- /src/game/m_house.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_house.c -------------------------------------------------------------------------------- /src/game/m_huusui_room.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_huusui_room.c -------------------------------------------------------------------------------- /src/game/m_island.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_island.c -------------------------------------------------------------------------------- /src/game/m_item_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_item_debug.c -------------------------------------------------------------------------------- /src/game/m_item_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_item_name.c -------------------------------------------------------------------------------- /src/game/m_kankyo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_kankyo.c -------------------------------------------------------------------------------- /src/game/m_land.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_land.c -------------------------------------------------------------------------------- /src/game/m_ledit_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_ledit_ovl.c -------------------------------------------------------------------------------- /src/game/m_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_lib.c -------------------------------------------------------------------------------- /src/game/m_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_lights.c -------------------------------------------------------------------------------- /src/game/m_mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_mail.c -------------------------------------------------------------------------------- /src/game/m_mail_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_mail_check.c -------------------------------------------------------------------------------- /src/game/m_mailbox_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_mailbox_ovl.c -------------------------------------------------------------------------------- /src/game/m_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_malloc.c -------------------------------------------------------------------------------- /src/game/m_map_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_map_ovl.c -------------------------------------------------------------------------------- /src/game/m_mark_room.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_mark_room.c -------------------------------------------------------------------------------- /src/game/m_melody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_melody.c -------------------------------------------------------------------------------- /src/game/m_mscore_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_mscore_ovl.c -------------------------------------------------------------------------------- /src/game/m_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_msg.c -------------------------------------------------------------------------------- /src/game/m_museum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_museum.c -------------------------------------------------------------------------------- /src/game/m_mushroom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_mushroom.c -------------------------------------------------------------------------------- /src/game/m_music_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_music_ovl.c -------------------------------------------------------------------------------- /src/game/m_name_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_name_table.c -------------------------------------------------------------------------------- /src/game/m_needlework.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_needlework.c -------------------------------------------------------------------------------- /src/game/m_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_notice.c -------------------------------------------------------------------------------- /src/game/m_notice_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_notice_ovl.c -------------------------------------------------------------------------------- /src/game/m_npc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_npc.c -------------------------------------------------------------------------------- /src/game/m_npc_walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_npc_walk.c -------------------------------------------------------------------------------- /src/game/m_olib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_olib.c -------------------------------------------------------------------------------- /src/game/m_pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_pause.c -------------------------------------------------------------------------------- /src/game/m_play.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_play.c -------------------------------------------------------------------------------- /src/game/m_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_player.c -------------------------------------------------------------------------------- /src/game/m_player_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_player_call.c -------------------------------------------------------------------------------- /src/game/m_player_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_player_lib.c -------------------------------------------------------------------------------- /src/game/m_police_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_police_box.c -------------------------------------------------------------------------------- /src/game/m_post_office.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_post_office.c -------------------------------------------------------------------------------- /src/game/m_prenmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_prenmi.c -------------------------------------------------------------------------------- /src/game/m_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_private.c -------------------------------------------------------------------------------- /src/game/m_quest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_quest.c -------------------------------------------------------------------------------- /src/game/m_rcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_rcp.c -------------------------------------------------------------------------------- /src/game/m_repay_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_repay_ovl.c -------------------------------------------------------------------------------- /src/game/m_roll_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_roll_lib.c -------------------------------------------------------------------------------- /src/game/m_room_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_room_type.c -------------------------------------------------------------------------------- /src/game/m_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_scene.c -------------------------------------------------------------------------------- /src/game/m_scene_ftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_scene_ftr.c -------------------------------------------------------------------------------- /src/game/m_scene_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_scene_table.c -------------------------------------------------------------------------------- /src/game/m_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_select.c -------------------------------------------------------------------------------- /src/game/m_shop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_shop.c -------------------------------------------------------------------------------- /src/game/m_skin_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_skin_matrix.c -------------------------------------------------------------------------------- /src/game/m_snowman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_snowman.c -------------------------------------------------------------------------------- /src/game/m_soncho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_soncho.c -------------------------------------------------------------------------------- /src/game/m_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_string.c -------------------------------------------------------------------------------- /src/game/m_submenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_submenu.c -------------------------------------------------------------------------------- /src/game/m_submenu_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_submenu_ovl.c -------------------------------------------------------------------------------- /src/game/m_tag_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_tag_ovl.c -------------------------------------------------------------------------------- /src/game/m_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_time.c -------------------------------------------------------------------------------- /src/game/m_timeIn_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_timeIn_ovl.c -------------------------------------------------------------------------------- /src/game/m_titledemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_titledemo.c -------------------------------------------------------------------------------- /src/game/m_trademark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_trademark.c -------------------------------------------------------------------------------- /src/game/m_vibctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_vibctl.c -------------------------------------------------------------------------------- /src/game/m_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_view.c -------------------------------------------------------------------------------- /src/game/m_warning_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/game/m_warning_ovl.c -------------------------------------------------------------------------------- /src/gamealloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/gamealloc.c -------------------------------------------------------------------------------- /src/gfxalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/gfxalloc.c -------------------------------------------------------------------------------- /src/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/graph.c -------------------------------------------------------------------------------- /src/irqmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/irqmgr.c -------------------------------------------------------------------------------- /src/lb_reki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/lb_reki.c -------------------------------------------------------------------------------- /src/lb_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/lb_rtc.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/main.c -------------------------------------------------------------------------------- /src/padmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/padmgr.c -------------------------------------------------------------------------------- /src/player_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/player_select.c -------------------------------------------------------------------------------- /src/s_cpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/s_cpak.c -------------------------------------------------------------------------------- /src/save_check.c_inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/save_check.c_inc -------------------------------------------------------------------------------- /src/save_check_MYK.c_inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/save_check_MYK.c_inc -------------------------------------------------------------------------------- /src/save_check_NSW.c_inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/save_check_NSW.c_inc -------------------------------------------------------------------------------- /src/save_check_YSD.c_inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/save_check_YSD.c_inc -------------------------------------------------------------------------------- /src/save_check_gen.c_inc: -------------------------------------------------------------------------------- 1 | static int sChk_check_save_gen() { 2 | return FALSE; 3 | } 4 | -------------------------------------------------------------------------------- /src/save_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/save_menu.c -------------------------------------------------------------------------------- /src/second_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/second_game.c -------------------------------------------------------------------------------- /src/static/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/static/boot.c -------------------------------------------------------------------------------- /src/static/ctors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/static/ctors.s -------------------------------------------------------------------------------- /src/static/dvderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/static/dvderr.c -------------------------------------------------------------------------------- /src/static/jsyswrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/static/jsyswrap.cpp -------------------------------------------------------------------------------- /src/static/libu64/pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/static/libu64/pad.c -------------------------------------------------------------------------------- /src/static/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/static/version.c -------------------------------------------------------------------------------- /src/system/sys_dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/system/sys_dynamic.c -------------------------------------------------------------------------------- /src/system/sys_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/system/sys_math.c -------------------------------------------------------------------------------- /src/system/sys_math3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/system/sys_math3d.c -------------------------------------------------------------------------------- /src/system/sys_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/system/sys_matrix.c -------------------------------------------------------------------------------- /src/system/sys_stacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/system/sys_stacks.c -------------------------------------------------------------------------------- /src/system/sys_ucode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/system/sys_ucode.c -------------------------------------------------------------------------------- /src/system/sys_vimgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/system/sys_vimgr.c -------------------------------------------------------------------------------- /src/zurumode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/src/zurumode.c -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/arc_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/tools/arc_tool.py -------------------------------------------------------------------------------- /tools/decompctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/tools/decompctx.py -------------------------------------------------------------------------------- /tools/download_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/tools/download_tool.py -------------------------------------------------------------------------------- /tools/msg_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/tools/msg_tool.py -------------------------------------------------------------------------------- /tools/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/tools/ninja_syntax.py -------------------------------------------------------------------------------- /tools/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/tools/project.py -------------------------------------------------------------------------------- /tools/pyjkernel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/tools/pyjkernel/LICENSE -------------------------------------------------------------------------------- /tools/texture_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/tools/texture_tool.py -------------------------------------------------------------------------------- /tools/transform_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACreTeam/ac-decomp/HEAD/tools/transform_dep.py --------------------------------------------------------------------------------