├── .clang-format ├── .clang-tidy ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── build-coop.yaml ├── .gitignore ├── Android.mk ├── CHANGES ├── Dockerfile ├── Makefile ├── Makefile.split ├── README.md ├── actors ├── amp │ ├── anims │ │ ├── anim_0800401C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bird │ ├── anims │ │ ├── anim_050008D0.inc.c │ │ ├── anim_050009D0.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── blargg │ ├── anims │ │ ├── anim_05006070.inc.c │ │ ├── anim_05006154.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── blue_coin_switch │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── blue_fish │ ├── anims │ │ ├── anim_0301C298.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bobomb │ ├── anims │ │ ├── anim_080237FC.inc.c │ │ ├── anim_08023954.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bomb │ ├── geo.inc.c │ └── model.inc.c ├── boo │ ├── geo.inc.c │ └── model.inc.c ├── boo_castle │ ├── geo.inc.c │ └── model.inc.c ├── book │ ├── geo.inc.c │ └── model.inc.c ├── bookend │ ├── anims │ │ ├── anim_050023F4.inc.c │ │ ├── anim_05002510.inc.c │ │ ├── anim_05002528.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bowling_ball │ └── geo.inc.c ├── bowser │ ├── anims │ │ ├── anim_060445EC.inc.c │ │ ├── anim_060453C8.inc.c │ │ ├── anim_06045D28.inc.c │ │ ├── anim_0604671C.inc.c │ │ ├── anim_0604675C.inc.c │ │ ├── anim_06048200.inc.c │ │ ├── anim_06049880.inc.c │ │ ├── anim_0604A8E4.inc.c │ │ ├── anim_0604B178.inc.c │ │ ├── anim_0604B8CC.inc.c │ │ ├── anim_0604D184.inc.c │ │ ├── anim_0604E5A0.inc.c │ │ ├── anim_0604F030.inc.c │ │ ├── anim_0604FF4C.inc.c │ │ ├── anim_06050530.inc.c │ │ ├── anim_060514E8.inc.c │ │ ├── anim_06051C68.inc.c │ │ ├── anim_06052680.inc.c │ │ ├── anim_06052D94.inc.c │ │ ├── anim_060534F4.inc.c │ │ ├── anim_06053B8C.inc.c │ │ ├── anim_06054290.inc.c │ │ ├── anim_06054950.inc.c │ │ ├── anim_06055210.inc.c │ │ ├── anim_06055984.inc.c │ │ ├── anim_06056774.inc.c │ │ ├── anim_06057678.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── flames_pos.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bowser_flame │ ├── geo.inc.c │ └── model.inc.c ├── bowser_key │ ├── anims │ │ ├── anim_course_exit.inc.c │ │ ├── anim_unlock_door.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── bowser_key_left.rgba16.png │ ├── bowser_key_right.rgba16.png │ ├── geo.inc.c │ └── model.inc.c ├── breakable_box │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bub │ ├── anims │ │ ├── anim_0601233C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bubba │ ├── geo.inc.c │ └── model.inc.c ├── bubble │ ├── geo.inc.c │ └── model.inc.c ├── bullet_bill │ ├── geo.inc.c │ └── model.inc.c ├── bully │ ├── anims │ │ ├── anim_050042A4.inc.c │ │ ├── anim_050043D8.inc.c │ │ ├── anim_05004598.inc.c │ │ ├── anim_050046F4.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── burn_smoke │ ├── geo.inc.c │ └── model.inc.c ├── butterfly │ ├── anims │ │ ├── anim_030055B0.inc.c │ │ ├── anim_03005698.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── cannon_barrel │ ├── geo.inc.c │ └── model.inc.c ├── cannon_base │ ├── geo.inc.c │ └── model.inc.c ├── cannon_lid │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── capswitch │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── chain_ball │ ├── geo.inc.c │ └── model.inc.c ├── chain_chomp │ ├── anims │ │ ├── anim_06025160.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── chair │ ├── anims │ │ ├── anim_0500576C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── checkerboard_platform │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── chillychief │ ├── anims │ │ ├── anim_060032EC.inc.c │ │ ├── anim_06003420.inc.c │ │ ├── anim_060035E0.inc.c │ │ ├── anim_0600373C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── chuckya │ ├── anims │ │ ├── anim_0800AF68.inc.c │ │ ├── anim_0800B1A8.inc.c │ │ ├── anim_0800B4A8.inc.c │ │ ├── anim_0800B9F8.inc.c │ │ ├── anim_0800BBEC.inc.c │ │ ├── anim_0800C058.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── clam_shell │ ├── anims │ │ ├── anim_05001654.inc.c │ │ ├── anim_0500172C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── coin │ ├── geo.inc.c │ └── model.inc.c ├── common0.c ├── common0.h ├── common0_geo.c ├── common1.c ├── common1.h ├── common1_geo.c ├── custom0.c ├── custom0.h ├── custom0_geo.c ├── cyan_fish │ ├── anims │ │ ├── anim_0600E24C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── dirt │ ├── geo.inc.c │ └── model.inc.c ├── door │ ├── anims │ │ ├── anim_03015208.inc.c │ │ ├── anim_03015440.inc.c │ │ ├── anim_03015458.inc.c │ │ ├── anim_03015690.inc.c │ │ ├── anim_030156A8.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── dorrie │ ├── anims │ │ ├── anim_0600E18C.inc.c │ │ ├── anim_0600E9BC.inc.c │ │ ├── anim_0600F620.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── error_model │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── exclamation_box │ ├── geo.inc.c │ └── model.inc.c ├── exclamation_box_outline │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── explosion │ ├── geo.inc.c │ └── model.inc.c ├── eyerok │ ├── anims │ │ ├── anim_0500D270.inc.c │ │ ├── anim_0500DF50.inc.c │ │ ├── anim_0500E1D8.inc.c │ │ ├── anim_0500E99C.inc.c │ │ ├── anim_0500F3D8.inc.c │ │ ├── anim_0500F3F0.inc.c │ │ ├── anim_0500FCCC.inc.c │ │ ├── anim_050116CC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── flame │ ├── geo.inc.c │ └── model.inc.c ├── flyguy │ ├── anims │ │ ├── anim_08011A4C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── fwoosh │ ├── geo.inc.c │ └── model.inc.c ├── goomba │ ├── anims │ │ ├── anim_0801DA34.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── group0.c ├── group0.h ├── group0_geo.c ├── group1.c ├── group1.h ├── group10.c ├── group10.h ├── group10_geo.c ├── group11.c ├── group11.h ├── group11_geo.c ├── group12.c ├── group12.h ├── group12_geo.c ├── group13.c ├── group13.h ├── group13_geo.c ├── group14.c ├── group14.h ├── group14_geo.c ├── group15.c ├── group15.h ├── group15_geo.c ├── group16.c ├── group16.h ├── group16_geo.c ├── group17.c ├── group17.h ├── group17_geo.c ├── group1_geo.c ├── group2.c ├── group2.h ├── group2_geo.c ├── group3.c ├── group3.h ├── group3_geo.c ├── group4.c ├── group4.h ├── group4_geo.c ├── group5.c ├── group5.h ├── group5_geo.c ├── group6.c ├── group6.h ├── group6_geo.c ├── group7.c ├── group7.h ├── group7_geo.c ├── group8.c ├── group8.h ├── group8_geo.c ├── group9.c ├── group9.h ├── group9_geo.c ├── haunted_cage │ ├── geo.inc.c │ └── model.inc.c ├── heart │ ├── geo.inc.c │ └── model.inc.c ├── heave_ho │ ├── anims │ │ ├── anim_05014F28.inc.c │ │ ├── anim_05015118.inc.c │ │ ├── anim_05015334.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── hoot │ ├── anims │ │ ├── anim_050053EC.inc.c │ │ ├── anim_05005750.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── impact_ring │ ├── geo.inc.c │ └── model.inc.c ├── impact_smoke │ ├── geo.inc.c │ └── model.inc.c ├── king_bobomb │ ├── anims │ │ ├── anim_0500BDFC.inc.c │ │ ├── anim_0500C2AC.inc.c │ │ ├── anim_0500C520.inc.c │ │ ├── anim_0500C774.inc.c │ │ ├── anim_0500CFCC.inc.c │ │ ├── anim_0500D5B0.inc.c │ │ ├── anim_0500D978.inc.c │ │ ├── anim_0500DDD8.inc.c │ │ ├── anim_0500E10C.inc.c │ │ ├── anim_0500F078.inc.c │ │ ├── anim_0500F6C8.inc.c │ │ ├── anim_0500FE18.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── klepto │ ├── anims │ │ ├── anim_05005E44.inc.c │ │ ├── anim_05007574.inc.c │ │ ├── anim_050079B0.inc.c │ │ ├── anim_05007E34.inc.c │ │ ├── anim_050086C0.inc.c │ │ ├── anim_05008A18.inc.c │ │ ├── anim_05008CE4.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── koopa │ ├── anims │ │ ├── anim_0600CC24.inc.c │ │ ├── anim_0600CFB8.inc.c │ │ ├── anim_0600D518.inc.c │ │ ├── anim_0600D804.inc.c │ │ ├── anim_0600DD90.inc.c │ │ ├── anim_0600E32C.inc.c │ │ ├── anim_0600E928.inc.c │ │ ├── anim_0600F3EC.inc.c │ │ ├── anim_0600FB1C.inc.c │ │ ├── anim_06010258.inc.c │ │ ├── anim_06010634.inc.c │ │ ├── anim_06010E48.inc.c │ │ ├── anim_060110D8.inc.c │ │ ├── anim_0601134C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── koopa_flag │ ├── anims │ │ ├── anim_06001010.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── koopa_shell │ ├── geo.inc.c │ └── model.inc.c ├── lakitu_cameraman │ ├── anims │ │ ├── anim_060058E0.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── lakitu_enemy │ ├── anims │ │ ├── anim_05013EDC.inc.c │ │ ├── anim_050140E8.inc.c │ │ ├── anim_050142E0.inc.c │ │ ├── anim_050144BC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── leaves │ ├── geo.inc.c │ └── model.inc.c ├── luigi │ ├── custom_luigi_cap.rgba16.png │ ├── custom_luigi_logo.rgba16.png │ ├── custom_luigi_logo_blend.rgba16.png │ ├── custom_luigi_mustache.rgba16.png │ ├── custom_luigi_sideburn.rgba16.png │ ├── custom_luigi_sideburn_add.rgba16.png │ ├── custom_luigi_skin.rgba16.png │ ├── geo.inc.c │ ├── geo_header.h │ ├── luigi_externs.h │ └── model.inc.c ├── luigi_cap │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── mad_piano │ ├── anims │ │ ├── anim_05009A04.inc.c │ │ ├── anim_05009AFC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── manta │ ├── anims │ │ ├── anim_05008CFC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── mario │ ├── custom_mario_cap.rgba16.png │ ├── custom_mario_logo.rgba16.png │ ├── custom_mario_logo_blend.rgba16.png │ ├── custom_mario_metal_light.rgba16.png │ ├── custom_mario_metal_shade.rgba16.png │ ├── custom_mario_metal_wing_light.rgba16.png │ ├── custom_mario_metal_wing_shade.rgba16.png │ ├── custom_mario_metal_wing_tip_light.rgba16.png │ ├── custom_mario_metal_wing_tip_shade.rgba16.png │ ├── custom_mario_sideburn.rgba16.png │ ├── custom_mario_sideburn_add.rgba16.png │ ├── custom_mario_skin.rgba16.png │ ├── geo.inc.c │ ├── geo_header.h │ ├── mario_externs.h │ └── model.inc.c ├── mario_cap │ ├── geo.inc.c │ ├── geo_header.h │ ├── mario_cap_externs.h │ └── model.inc.c ├── metal_box │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── mips │ ├── anims │ │ ├── anim_06013248.inc.c │ │ ├── anim_0601369C.inc.c │ │ ├── anim_060139F8.inc.c │ │ ├── anim_06014B94.inc.c │ │ ├── anim_0601561C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── mist │ ├── geo.inc.c │ └── model.inc.c ├── moneybag │ ├── anims │ │ ├── anim_06005AD8.inc.c │ │ ├── anim_06005BEC.inc.c │ │ ├── anim_06005C98.inc.c │ │ ├── anim_06005D3C.inc.c │ │ ├── anim_06005E44.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── monty_mole │ ├── anims │ │ ├── anim_05004FEC.inc.c │ │ ├── anim_0500527C.inc.c │ │ ├── anim_050054B0.inc.c │ │ ├── anim_050062B0.inc.c │ │ ├── anim_050065C0.inc.c │ │ ├── anim_050065D8.inc.c │ │ ├── anim_05006880.inc.c │ │ ├── anim_05006B10.inc.c │ │ ├── anim_05006DB8.inc.c │ │ ├── anim_05007230.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── monty_mole_hole │ └── model.inc.c ├── mr_i_eyeball │ ├── geo.inc.c │ └── model.inc.c ├── mr_i_iris │ ├── geo.inc.c │ └── model.inc.c ├── mushroom_1up │ ├── geo.inc.c │ └── model.inc.c ├── number │ └── geo.inc.c ├── peach │ ├── anims │ │ ├── anim_0500C638.inc.c │ │ ├── anim_0500E6B4.inc.c │ │ ├── anim_0500ED94.inc.c │ │ ├── anim_0500F474.inc.c │ │ ├── anim_0500FE84.inc.c │ │ ├── anim_05011050.inc.c │ │ ├── anim_05012F40.inc.c │ │ ├── anim_05015468.inc.c │ │ ├── anim_05016798.inc.c │ │ ├── anim_05018664.inc.c │ │ ├── anim_0501B328.inc.c │ │ ├── anim_0501C404.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── pebble │ └── model.inc.c ├── penguin │ ├── anims │ │ ├── anim_050079E4.inc.c │ │ ├── anim_05007DCC.inc.c │ │ ├── anim_050087C0.inc.c │ │ ├── anim_05008B5C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── piranha_plant │ ├── anims │ │ ├── anim_06017C38.inc.c │ │ ├── anim_06017D88.inc.c │ │ ├── anim_060187B0.inc.c │ │ ├── anim_06018BA8.inc.c │ │ ├── anim_06019854.inc.c │ │ ├── anim_0601A014.inc.c │ │ ├── anim_0601AAE4.inc.c │ │ ├── anim_0601AF34.inc.c │ │ ├── anim_0601B634.inc.c │ │ ├── anim_0601C304.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── pokey │ ├── geo.inc.c │ └── model.inc.c ├── poundable_pole │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── power_meter │ └── model.inc.c ├── purple_switch │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── sand │ └── model.inc.c ├── scuttlebug │ ├── anims │ │ ├── anim_0601504C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── seaweed │ ├── anims │ │ ├── anim_0600A4BC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── skeeter │ ├── anims │ │ ├── anim_06005D44.inc.c │ │ ├── anim_06006B70.inc.c │ │ ├── anim_060071E0.inc.c │ │ ├── anim_06007DC8.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── small_key │ ├── geo.inc.c │ └── model.inc.c ├── smoke │ └── model.inc.c ├── snowman │ ├── anims │ │ ├── anim_0500CED8.inc.c │ │ ├── anim_0500D100.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── snufit │ ├── geo.inc.c │ └── model.inc.c ├── sparkle │ ├── geo.inc.c │ └── model.inc.c ├── sparkle_animation │ ├── geo.inc.c │ └── model.inc.c ├── spindrift │ ├── anims │ │ ├── anim_050006AC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── spiny │ ├── anims │ │ ├── anim_05016E94.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── spiny_egg │ ├── anims │ │ ├── anim_050157CC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── springboard │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── star │ ├── geo.inc.c │ └── model.inc.c ├── stomp_smoke │ ├── geo.inc.c │ └── model.inc.c ├── sushi │ ├── anims │ │ ├── anim_0500AE3C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── swoop │ ├── anims │ │ ├── anim_06006E88.inc.c │ │ ├── anim_060070B8.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── test_platform │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── thwomp │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── toad │ ├── anims │ │ ├── anim_06008F7C.inc.c │ │ ├── anim_06009310.inc.c │ │ ├── anim_060099F0.inc.c │ │ ├── anim_0600A0D0.inc.c │ │ ├── anim_0600B66C.inc.c │ │ ├── anim_0600CE78.inc.c │ │ ├── anim_0600E414.inc.c │ │ ├── anim_0600FB40.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── toad_cap │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── toad_player │ ├── custom_toad_cap.ia16.png │ ├── custom_toad_eyes_center.rgba32.png │ ├── custom_toad_eyes_closed.rgba32.png │ ├── custom_toad_eyes_dead.rgba32.png │ ├── custom_toad_eyes_down.rgba32.png │ ├── custom_toad_eyes_half_closed.rgba32.png │ ├── custom_toad_eyes_left.rgba32.png │ ├── custom_toad_eyes_right.rgba32.png │ ├── custom_toad_eyes_up.rgba32.png │ ├── custom_toad_face_dead.rgba32.png │ ├── custom_toad_face_neutral.rgba32.png │ ├── custom_toad_hair.ia16.png │ ├── custom_toad_spots.ia16.png │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ └── toad_player_externs.h ├── tornado │ ├── geo.inc.c │ └── model.inc.c ├── transparent_star │ ├── geo.inc.c │ └── model.inc.c ├── treasure_chest │ ├── geo.inc.c │ └── model.inc.c ├── tree │ ├── geo.inc.c │ └── model.inc.c ├── ukiki │ ├── anims │ │ ├── anim_0500D658.inc.c │ │ ├── anim_0500DC80.inc.c │ │ ├── anim_0500DDEC.inc.c │ │ ├── anim_0500EACC.inc.c │ │ ├── anim_0500EEA8.inc.c │ │ ├── anim_0500F530.inc.c │ │ ├── anim_0500FC84.inc.c │ │ ├── anim_0501006C.inc.c │ │ ├── anim_050103F4.inc.c │ │ ├── anim_05012ABC.inc.c │ │ ├── anim_05014BE4.inc.c │ │ ├── anim_050153C4.inc.c │ │ ├── anim_0501576C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── unagi │ ├── anims │ │ ├── anim_0500FBF4.inc.c │ │ ├── anim_05010488.inc.c │ │ ├── anim_05010B54.inc.c │ │ ├── anim_05011488.inc.c │ │ ├── anim_05011890.inc.c │ │ ├── anim_05011D40.inc.c │ │ ├── anim_0501280C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── walk_smoke │ ├── geo.inc.c │ └── model.inc.c ├── waluigi │ ├── custom_waluigi_cap.rgba16.png │ ├── custom_waluigi_eyes_center.rgba16.png │ ├── custom_waluigi_eyes_closed.rgba16.png │ ├── custom_waluigi_eyes_dead.rgba16.png │ ├── custom_waluigi_eyes_down_unused.rgba16.png │ ├── custom_waluigi_eyes_half_closed.rgba16.png │ ├── custom_waluigi_eyes_left_unused.rgba16.png │ ├── custom_waluigi_eyes_right_unused.rgba16.png │ ├── custom_waluigi_eyes_up_unused.rgba16.png │ ├── custom_waluigi_logo.rgba16.png │ ├── custom_waluigi_logo_blend.rgba16.png │ ├── custom_waluigi_mouth.rgba16.png │ ├── custom_waluigi_mouth_dead.rgba16.png │ ├── custom_waluigi_sideburn.rgba16.png │ ├── custom_waluigi_sideburn_add.rgba16.png │ ├── custom_waluigi_skin.rgba16.png │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ └── waluigi_externs.h ├── waluigi_cap │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── wario │ ├── custom_wario_cap.rgba16.png │ ├── custom_wario_eyes_center.rgba16.png │ ├── custom_wario_eyes_closed.rgba16.png │ ├── custom_wario_eyes_dead.rgba16.png │ ├── custom_wario_eyes_down_unused.rgba16.png │ ├── custom_wario_eyes_half_closed.rgba16.png │ ├── custom_wario_eyes_left_unused.rgba16.png │ ├── custom_wario_eyes_right_unused.rgba16.png │ ├── custom_wario_eyes_up_unused.rgba16.png │ ├── custom_wario_logo.rgba16.png │ ├── custom_wario_logo_blend.rgba16.png │ ├── custom_wario_mouth.rgba16.png │ ├── custom_wario_mouth_dead.rgba16.png │ ├── custom_wario_overalls_button.rgba16.png │ ├── custom_wario_sideburn.rgba16.png │ ├── custom_wario_sideburn_add.rgba16.png │ ├── custom_wario_skin.rgba16.png │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ └── wario_externs.h ├── wario_cap │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── warp_collision │ └── collision.inc.c ├── warp_pipe │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── water_bubble │ ├── geo.inc.c │ └── model.inc.c ├── water_mine │ ├── geo.inc.c │ └── model.inc.c ├── water_ring │ ├── anims │ │ ├── anim_06013F64.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── water_splash │ ├── geo.inc.c │ └── model.inc.c ├── water_wave │ ├── geo.inc.c │ └── model.inc.c ├── whirlpool │ └── model.inc.c ├── white_particle │ ├── geo.inc.c │ └── model.inc.c ├── white_particle_small │ └── model.inc.c ├── whomp │ ├── anims │ │ ├── anim_060202DC.inc.c │ │ ├── anim_060209EC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── wiggler_body │ ├── anims │ │ ├── anim_0500C760.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── wiggler_head │ ├── anims │ │ ├── anim_0500EC74.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── wooden_signpost │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── yellow_sphere │ ├── geo.inc.c │ └── model.inc.c ├── yellow_sphere_small │ ├── geo.inc.c │ └── model.inc.c ├── yoshi │ ├── anims │ │ ├── anim_050233A4.inc.c │ │ ├── anim_05023E4C.inc.c │ │ ├── anim_050240E8.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── yoshi_egg │ ├── geo.inc.c │ └── model.inc.c ├── zcustom0.c ├── zcustom0.h └── zcustom0_geo.c ├── assets.json ├── assets ├── anims │ ├── anim_00.inc.c │ ├── anim_01_02.inc.c │ ├── anim_03.inc.c │ ├── anim_04.inc.c │ ├── anim_05.inc.c │ ├── anim_06.inc.c │ ├── anim_07_08.inc.c │ ├── anim_09.inc.c │ ├── anim_0A.inc.c │ ├── anim_0B_0C.inc.c │ ├── anim_0D.inc.c │ ├── anim_0E.inc.c │ ├── anim_0F_10.inc.c │ ├── anim_11.inc.c │ ├── anim_12.inc.c │ ├── anim_13.inc.c │ ├── anim_14.inc.c │ ├── anim_15.inc.c │ ├── anim_16.inc.c │ ├── anim_17.inc.c │ ├── anim_18.inc.c │ ├── anim_19.inc.c │ ├── anim_1A.inc.c │ ├── anim_1B.inc.c │ ├── anim_1C.inc.c │ ├── anim_1D.inc.c │ ├── anim_1E.inc.c │ ├── anim_1F.inc.c │ ├── anim_20.inc.c │ ├── anim_21.inc.c │ ├── anim_22.inc.c │ ├── anim_23.inc.c │ ├── anim_24.inc.c │ ├── anim_25.inc.c │ ├── anim_26.inc.c │ ├── anim_27.inc.c │ ├── anim_28.inc.c │ ├── anim_29.inc.c │ ├── anim_2A.inc.c │ ├── anim_2B.inc.c │ ├── anim_2C_2D.inc.c │ ├── anim_2E.inc.c │ ├── anim_2F.inc.c │ ├── anim_30.inc.c │ ├── anim_31.inc.c │ ├── anim_32.inc.c │ ├── anim_33.inc.c │ ├── anim_34.inc.c │ ├── anim_35.inc.c │ ├── anim_36.inc.c │ ├── anim_37.inc.c │ ├── anim_38.inc.c │ ├── anim_39.inc.c │ ├── anim_3A.inc.c │ ├── anim_3B.inc.c │ ├── anim_3C_3D.inc.c │ ├── anim_3E.inc.c │ ├── anim_3F.inc.c │ ├── anim_40.inc.c │ ├── anim_41.inc.c │ ├── anim_42.inc.c │ ├── anim_43.inc.c │ ├── anim_44.inc.c │ ├── anim_45_46.inc.c │ ├── anim_47.inc.c │ ├── anim_48.inc.c │ ├── anim_49.inc.c │ ├── anim_4A.inc.c │ ├── anim_4B.inc.c │ ├── anim_4C.inc.c │ ├── anim_4D_4E.inc.c │ ├── anim_4F.inc.c │ ├── anim_50.inc.c │ ├── anim_51.inc.c │ ├── anim_52.inc.c │ ├── anim_53.inc.c │ ├── anim_54.inc.c │ ├── anim_55.inc.c │ ├── anim_56_57.inc.c │ ├── anim_58.inc.c │ ├── anim_59.inc.c │ ├── anim_5A.inc.c │ ├── anim_5B.inc.c │ ├── anim_5C.inc.c │ ├── anim_5D.inc.c │ ├── anim_5E.inc.c │ ├── anim_5F.inc.c │ ├── anim_60.inc.c │ ├── anim_61.inc.c │ ├── anim_62.inc.c │ ├── anim_63.inc.c │ ├── anim_64.inc.c │ ├── anim_65.inc.c │ ├── anim_66.inc.c │ ├── anim_67.inc.c │ ├── anim_68.inc.c │ ├── anim_69.inc.c │ ├── anim_6A.inc.c │ ├── anim_6B.inc.c │ ├── anim_6C.inc.c │ ├── anim_6D.inc.c │ ├── anim_6E.inc.c │ ├── anim_6F_70.inc.c │ ├── anim_71.inc.c │ ├── anim_72_73.inc.c │ ├── anim_74.inc.c │ ├── anim_75.inc.c │ ├── anim_76.inc.c │ ├── anim_77.inc.c │ ├── anim_78.inc.c │ ├── anim_79.inc.c │ ├── anim_7A.inc.c │ ├── anim_7B.inc.c │ ├── anim_7C.inc.c │ ├── anim_7D.inc.c │ ├── anim_7E.inc.c │ ├── anim_7F.inc.c │ ├── anim_80.inc.c │ ├── anim_81.inc.c │ ├── anim_82.inc.c │ ├── anim_83.inc.c │ ├── anim_84.inc.c │ ├── anim_85.inc.c │ ├── anim_86.inc.c │ ├── anim_87.inc.c │ ├── anim_88_89.inc.c │ ├── anim_8A.inc.c │ ├── anim_8B.inc.c │ ├── anim_8C.inc.c │ ├── anim_8D.inc.c │ ├── anim_8E_8F.inc.c │ ├── anim_90.inc.c │ ├── anim_91.inc.c │ ├── anim_92.inc.c │ ├── anim_93.inc.c │ ├── anim_94.inc.c │ ├── anim_95.inc.c │ ├── anim_96.inc.c │ ├── anim_97.inc.c │ ├── anim_98.inc.c │ ├── anim_99.inc.c │ ├── anim_9A.inc.c │ ├── anim_9B.inc.c │ ├── anim_9C.inc.c │ ├── anim_9D.inc.c │ ├── anim_9E.inc.c │ ├── anim_9F.inc.c │ ├── anim_A0.inc.c │ ├── anim_A1.inc.c │ ├── anim_A2.inc.c │ ├── anim_A3.inc.c │ ├── anim_A4.inc.c │ ├── anim_A5.inc.c │ ├── anim_A6.inc.c │ ├── anim_A7.inc.c │ ├── anim_A8.inc.c │ ├── anim_A9.inc.c │ ├── anim_AA.inc.c │ ├── anim_AB.inc.c │ ├── anim_AC.inc.c │ ├── anim_AD.inc.c │ ├── anim_AE.inc.c │ ├── anim_AF.inc.c │ ├── anim_B0.inc.c │ ├── anim_B1.inc.c │ ├── anim_B2.inc.c │ ├── anim_B3.inc.c │ ├── anim_B4.inc.c │ ├── anim_B5_B6.inc.c │ ├── anim_B7.inc.c │ ├── anim_B8.inc.c │ ├── anim_B9.inc.c │ ├── anim_BA.inc.c │ ├── anim_BB.inc.c │ ├── anim_BC_BD.inc.c │ ├── anim_BE.inc.c │ ├── anim_BF.inc.c │ ├── anim_C0.inc.c │ ├── anim_C1.inc.c │ ├── anim_C2.inc.c │ ├── anim_C3.inc.c │ ├── anim_C4.inc.c │ ├── anim_C5.inc.c │ ├── anim_C6.inc.c │ ├── anim_C7.inc.c │ ├── anim_C8.inc.c │ ├── anim_C9.inc.c │ ├── anim_CA.inc.c │ ├── anim_CB_CC.inc.c │ ├── anim_CD.inc.c │ ├── anim_CE.inc.c │ ├── anim_CF.inc.c │ └── anim_D0.inc.c └── demo_data.json ├── autogen ├── autogen.sh ├── common.py ├── convert_constants.py ├── convert_functions.py ├── convert_structs.py ├── extract_constants.py ├── extract_display_lists.py ├── extract_functions.py ├── extract_object_fields.py ├── extract_structs.py ├── gen_hooks.py ├── gen_math.py ├── gen_sound.py ├── lua_constants │ ├── built-in.lua │ └── deprecated.lua ├── lua_definitions │ ├── constants.lua │ ├── functions.lua │ ├── manual.lua │ └── structs.lua └── vec_types.py ├── bin ├── bbh_skybox.c ├── bitdw_skybox.c ├── bitfs_skybox.c ├── bits_skybox.c ├── cave.c ├── ccm_skybox.c ├── cloud_floor_skybox.c ├── clouds_skybox.c ├── custom_font.c ├── custom_textures.c ├── debug_level_select.c ├── effect.c ├── eu │ ├── translation_de.c │ ├── translation_en.c │ └── translation_fr.c ├── fire.c ├── generic.c ├── grass.c ├── inside.c ├── machine.c ├── mountain.c ├── outside.c ├── segment2.c ├── sky.c ├── snow.c ├── spooky.c ├── ssl_skybox.c ├── title_screen_bg.c ├── water.c ├── water_skybox.c └── wdw_skybox.c ├── charmap.txt ├── charmap_menu.txt ├── credits.txt ├── data ├── behavior_data.c ├── behavior_table.c ├── dynos.c.h ├── dynos.cpp.h ├── dynos.h ├── dynos_bin_actor.cpp ├── dynos_bin_ambient_t.cpp ├── dynos_bin_animation.cpp ├── dynos_bin_behavior.cpp ├── dynos_bin_col.cpp ├── dynos_bin_common.cpp ├── dynos_bin_compress.cpp ├── dynos_bin_geo.cpp ├── dynos_bin_gfx.cpp ├── dynos_bin_legacy.cpp ├── dynos_bin_light0.cpp ├── dynos_bin_light_t.cpp ├── dynos_bin_lights.cpp ├── dynos_bin_lvl.cpp ├── dynos_bin_lvl_validate.cpp ├── dynos_bin_macro_object.cpp ├── dynos_bin_movtex.cpp ├── dynos_bin_movtexqc.cpp ├── dynos_bin_pointer.cpp ├── dynos_bin_read.cpp ├── dynos_bin_rooms.cpp ├── dynos_bin_tex.cpp ├── dynos_bin_texlist.cpp ├── dynos_bin_trajectory.cpp ├── dynos_bin_utils.cpp ├── dynos_bin_vtx.cpp ├── dynos_c.cpp ├── dynos_cmap.cpp ├── dynos_cmap.cpp.h ├── dynos_gfx_init.cpp ├── dynos_level.cpp ├── dynos_main.cpp ├── dynos_mgr_actor.cpp ├── dynos_mgr_anim.cpp ├── dynos_mgr_bhv.cpp ├── dynos_mgr_builtin.cpp ├── dynos_mgr_builtin_externs.h ├── dynos_mgr_builtin_tex.cpp ├── dynos_mgr_col.cpp ├── dynos_mgr_gfx.cpp ├── dynos_mgr_lvl.cpp ├── dynos_mgr_moddata.cpp ├── dynos_mgr_moddata.hpp ├── dynos_mgr_models.cpp ├── dynos_mgr_movtexqc.cpp ├── dynos_mgr_pack.cpp ├── dynos_mgr_tex.cpp ├── dynos_misc.cpp └── dynos_warps.cpp ├── developer ├── README.txt ├── compile.sh ├── cpp-check.sh ├── debug.sh └── static-analysis.sh ├── docs └── lua │ ├── constants.md │ ├── examples │ ├── Custom Text Example.lua │ ├── Mario-Run.lua │ ├── Moonjump.lua │ ├── audio-test │ │ ├── main.lua │ │ └── sound │ │ │ ├── music.mp3 │ │ │ └── sample.mp3 │ ├── behavior-add-to-goomba.lua │ ├── behavior-ball.lua │ ├── behavior-replace-goomba.lua │ ├── behavior-surface-collisions.lua │ ├── big-paddle │ │ ├── actors │ │ │ ├── big_paddle │ │ │ │ ├── collision.inc.c │ │ │ │ ├── collision_header.h │ │ │ │ ├── geo.inc.c │ │ │ │ ├── geo_header.h │ │ │ │ └── model.inc.c │ │ │ ├── big_paddle_collision.col │ │ │ └── big_paddle_geo.bin │ │ └── main.lua │ ├── bytestring-packet-example.lua │ ├── custom-animations-dynos │ │ ├── actors │ │ │ └── mario │ │ │ │ └── anims │ │ │ │ ├── anim_72.inc.c │ │ │ │ └── table.inc.c │ │ └── main.lua │ ├── custom-animations-lua │ │ ├── animations.lua │ │ └── main.lua │ ├── custom-box-model │ │ ├── actors │ │ │ ├── custom_box │ │ │ │ ├── custom_box_surface.rgba16.png │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ └── custom_box_geo.bin │ │ └── main.lua │ ├── custom-hud-texture │ │ ├── main.lua │ │ └── textures │ │ │ ├── test.png │ │ │ └── test.tex │ ├── custom-level │ │ ├── actors │ │ │ ├── big_paddle │ │ │ │ ├── collision.inc.c │ │ │ │ ├── collision_header.h │ │ │ │ ├── geo.inc.c │ │ │ │ ├── geo_header.h │ │ │ │ └── model.inc.c │ │ │ ├── big_paddle_collision.col │ │ │ └── big_paddle_geo.bin │ │ ├── levels │ │ │ ├── bob │ │ │ │ ├── area_1 │ │ │ │ │ ├── collision.inc.c │ │ │ │ │ ├── geo.inc.c │ │ │ │ │ ├── macro.inc.c │ │ │ │ │ └── spline.inc.c │ │ │ │ ├── geo.c │ │ │ │ ├── geo.inc.c │ │ │ │ ├── header.h │ │ │ │ ├── header.inc.h │ │ │ │ ├── leveldata.c │ │ │ │ ├── leveldata.inc.c │ │ │ │ ├── model.inc.c │ │ │ │ ├── script.c │ │ │ │ └── space_skybox.c │ │ │ └── level_bob_entry.lvl │ │ ├── main.lua │ │ └── skybox │ │ │ ├── space.0.rgba16.png │ │ │ ├── space.1.rgba16.png │ │ │ ├── space.10.rgba16.png │ │ │ ├── space.11.rgba16.png │ │ │ ├── space.12.rgba16.png │ │ │ ├── space.13.rgba16.png │ │ │ ├── space.14.rgba16.png │ │ │ ├── space.15.rgba16.png │ │ │ ├── space.16.rgba16.png │ │ │ ├── space.17.rgba16.png │ │ │ ├── space.18.rgba16.png │ │ │ ├── space.19.rgba16.png │ │ │ ├── space.2.rgba16.png │ │ │ ├── space.20.rgba16.png │ │ │ ├── space.21.rgba16.png │ │ │ ├── space.22.rgba16.png │ │ │ ├── space.23.rgba16.png │ │ │ ├── space.24.rgba16.png │ │ │ ├── space.25.rgba16.png │ │ │ ├── space.26.rgba16.png │ │ │ ├── space.27.rgba16.png │ │ │ ├── space.28.rgba16.png │ │ │ ├── space.29.rgba16.png │ │ │ ├── space.3.rgba16.png │ │ │ ├── space.30.rgba16.png │ │ │ ├── space.31.rgba16.png │ │ │ ├── space.32.rgba16.png │ │ │ ├── space.33.rgba16.png │ │ │ ├── space.34.rgba16.png │ │ │ ├── space.35.rgba16.png │ │ │ ├── space.36.rgba16.png │ │ │ ├── space.37.rgba16.png │ │ │ ├── space.38.rgba16.png │ │ │ ├── space.39.rgba16.png │ │ │ ├── space.4.rgba16.png │ │ │ ├── space.40.rgba16.png │ │ │ ├── space.41.rgba16.png │ │ │ ├── space.42.rgba16.png │ │ │ ├── space.43.rgba16.png │ │ │ ├── space.44.rgba16.png │ │ │ ├── space.45.rgba16.png │ │ │ ├── space.46.rgba16.png │ │ │ ├── space.47.rgba16.png │ │ │ ├── space.48.rgba16.png │ │ │ ├── space.49.rgba16.png │ │ │ ├── space.5.rgba16.png │ │ │ ├── space.50.rgba16.png │ │ │ ├── space.51.rgba16.png │ │ │ ├── space.52.rgba16.png │ │ │ ├── space.53.rgba16.png │ │ │ ├── space.54.rgba16.png │ │ │ ├── space.55.rgba16.png │ │ │ ├── space.56.rgba16.png │ │ │ ├── space.57.rgba16.png │ │ │ ├── space.58.rgba16.png │ │ │ ├── space.59.rgba16.png │ │ │ ├── space.6.rgba16.png │ │ │ ├── space.60.rgba16.png │ │ │ ├── space.61.rgba16.png │ │ │ ├── space.62.rgba16.png │ │ │ ├── space.63.rgba16.png │ │ │ ├── space.7.rgba16.png │ │ │ ├── space.8.rgba16.png │ │ │ └── space.9.rgba16.png │ ├── gfx-vtx-demo │ │ ├── a-math.lua │ │ ├── actors │ │ │ └── shape │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ ├── main.lua │ │ ├── textures │ │ │ ├── matrix_0.png │ │ │ ├── matrix_1.png │ │ │ ├── matrix_10.png │ │ │ ├── matrix_2.png │ │ │ ├── matrix_3.png │ │ │ ├── matrix_4.png │ │ │ ├── matrix_5.png │ │ │ ├── matrix_6.png │ │ │ ├── matrix_7.png │ │ │ ├── matrix_8.png │ │ │ └── matrix_9.png │ │ └── update.lua │ ├── hud.lua │ ├── instant-clip.lua │ ├── koopa-player-model │ │ ├── actors │ │ │ └── koopa_player_geo.bin │ │ └── main.lua │ ├── lighting-engine-demo │ │ ├── a-constants.lua │ │ ├── a-utils.lua │ │ ├── data │ │ │ ├── behavior_data.c │ │ │ └── bhvFlashlight.bhv │ │ ├── levels │ │ │ ├── canals │ │ │ │ ├── area_1 │ │ │ │ │ ├── collision.inc.c │ │ │ │ │ ├── geo.inc.c │ │ │ │ │ ├── macro.inc.c │ │ │ │ │ └── spline.inc.c │ │ │ │ ├── camera_trigger.inc.c │ │ │ │ ├── concrete.rgba16.png │ │ │ │ ├── debris.rgba16.png │ │ │ │ ├── dirt.rgba16.png │ │ │ │ ├── geo.inc.c │ │ │ │ ├── header.inc.h │ │ │ │ ├── leveldata.inc.c │ │ │ │ ├── model.inc.c │ │ │ │ ├── oldwall.rgba16.png │ │ │ │ ├── rock.rgba16.png │ │ │ │ ├── script.c │ │ │ │ ├── texture_include.inc.c │ │ │ │ └── water.ci8.png │ │ │ └── hl │ │ │ │ ├── _0_fifties_lgt2.rgba16.png │ │ │ │ ├── _0_fifties_lgt3.rgba16.png │ │ │ │ ├── _0_generic85.rgba16.png │ │ │ │ ├── _0c2a4e_w1.rgba16.png │ │ │ │ ├── _a_lab1_sw1.rgba16.png │ │ │ │ ├── _gratestep2.rgba16.png │ │ │ │ ├── _lab1_cmp2.rgba16.png │ │ │ │ ├── _lab_crt2.rgba16.png │ │ │ │ ├── _lab_crt8.rgba16.png │ │ │ │ ├── _spotblue.rgba16.png │ │ │ │ ├── _spotyellow.rgba16.png │ │ │ │ ├── area_1 │ │ │ │ ├── collision.inc.c │ │ │ │ ├── geo.inc.c │ │ │ │ ├── macro.inc.c │ │ │ │ └── spline.inc.c │ │ │ │ ├── babtech_ceil01.rgba16.png │ │ │ │ ├── basetrim02.rgba16.png │ │ │ │ ├── black.rgba16.png │ │ │ │ ├── c1a0_labglu.rgba16.png │ │ │ │ ├── c1a0_labw4.rgba16.png │ │ │ │ ├── c1a0_labw5.rgba16.png │ │ │ │ ├── c1a0_labw7.rgba16.png │ │ │ │ ├── c1a0_wx.rgba16.png │ │ │ │ ├── c1a1_flr1.rgba16.png │ │ │ │ ├── c1a1_flr2c.rgba16.png │ │ │ │ ├── c1a1dooredge.rgba16.png │ │ │ │ ├── c1a1sign2a.rgba16.png │ │ │ │ ├── c1a1sign2b.rgba16.png │ │ │ │ ├── c2a4e_w1b.rgba16.png │ │ │ │ ├── c2a4x_c1.rgba16.png │ │ │ │ ├── ca1x_monside.rgba16.png │ │ │ │ ├── camera_trigger.inc.c │ │ │ │ ├── drkmtl_scrn.rgba16.png │ │ │ │ ├── drkmtl_scrn3.rgba16.png │ │ │ │ ├── drkmtlt_bord11.rgba16.png │ │ │ │ ├── drkmtlt_ceil01b.rgba16.png │ │ │ │ ├── duct_vnt.rgba16.png │ │ │ │ ├── fifties_cmp3b.rgba16.png │ │ │ │ ├── fifties_cmp3c.rgba16.png │ │ │ │ ├── fifties_mon1b.rgba16.png │ │ │ │ ├── flatbed_bumper.rgba16.png │ │ │ │ ├── generic015v2.rgba16.png │ │ │ │ ├── generic028.rgba16.png │ │ │ │ ├── generic46.rgba16.png │ │ │ │ ├── geo.inc.c │ │ │ │ ├── header.inc.h │ │ │ │ ├── lab1_b4.rgba16.png │ │ │ │ ├── lab1_comp3e.rgba16.png │ │ │ │ ├── lab1_door2a.rgba16.png │ │ │ │ ├── lab1_flr10.rgba16.png │ │ │ │ ├── lab1_gear2.rgba16.png │ │ │ │ ├── lab1_gear3.rgba16.png │ │ │ │ ├── lab1_map1.rgba16.png │ │ │ │ ├── lab1_map2.rgba16.png │ │ │ │ ├── leveldata.inc.c │ │ │ │ ├── model.inc.c │ │ │ │ ├── out_dmplid.rgba16.png │ │ │ │ ├── paper1.rgba16.png │ │ │ │ ├── pfab_bks1a.rgba16.png │ │ │ │ ├── pfab_bks1b.rgba16.png │ │ │ │ ├── script.c │ │ │ │ ├── signc1a1_1.rgba16.png │ │ │ │ ├── stripes2.rgba16.png │ │ │ │ └── texture_include.inc.c │ │ ├── main.lua │ │ ├── objects.lua │ │ ├── shading.lua │ │ └── sound │ │ │ └── flashlight.ogg │ ├── low-gravity.lua │ ├── spawn-stuff.lua │ ├── texture-override │ │ ├── main.lua │ │ └── textures │ │ │ ├── matrix_0.png │ │ │ ├── matrix_0.tex │ │ │ ├── matrix_1.png │ │ │ ├── matrix_1.tex │ │ │ ├── matrix_10.png │ │ │ ├── matrix_10.tex │ │ │ ├── matrix_2.png │ │ │ ├── matrix_2.tex │ │ │ ├── matrix_3.png │ │ │ ├── matrix_3.tex │ │ │ ├── matrix_4.png │ │ │ ├── matrix_4.tex │ │ │ ├── matrix_5.png │ │ │ ├── matrix_5.tex │ │ │ ├── matrix_6.png │ │ │ ├── matrix_6.tex │ │ │ ├── matrix_7.png │ │ │ ├── matrix_7.tex │ │ │ ├── matrix_8.png │ │ │ ├── matrix_8.tex │ │ │ ├── matrix_9.png │ │ │ └── matrix_9.tex │ └── water-level.lua │ ├── functions-2.md │ ├── functions-3.md │ ├── functions-4.md │ ├── functions-5.md │ ├── functions-6.md │ ├── functions-7.md │ ├── functions.md │ ├── globals.md │ ├── guides │ ├── hooks.md │ ├── lighting-engine.md │ ├── mario-state.md │ ├── modfs.md │ ├── object-lists.md │ └── vs-code-setup.md │ ├── lua.md │ └── structs.md ├── dynos.mk ├── dynos └── packs │ └── Coop Cafe Pipe │ ├── burn_smoke_geo.bin │ ├── title_texture_0A0001C0.tex │ ├── title_texture_0A000E40.tex │ ├── title_texture_0A001AC0.tex │ ├── title_texture_0A002740.tex │ └── warp_pipe_geo.bin ├── extract_assets.py ├── format.sh ├── include ├── GL │ ├── eglew.h │ ├── glew.h │ ├── glxew.h │ └── wglew.h ├── PR │ ├── abi.h │ ├── gbi.h │ ├── gbi_extension.h │ ├── gs2dex.h │ ├── gu.h │ ├── libaudio.h │ ├── libultra.h │ ├── mbi.h │ ├── os_ai.h │ ├── os_cache.h │ ├── os_cont.h │ ├── os_eeprom.h │ ├── os_exception.h │ ├── os_internal.h │ ├── os_libc.h │ ├── os_message.h │ ├── os_misc.h │ ├── os_pi.h │ ├── os_rdp.h │ ├── os_thread.h │ ├── os_time.h │ ├── os_tlb.h │ ├── os_vi.h │ ├── sptask.h │ ├── ucode.h │ └── ultratypes.h ├── android_execinfo │ ├── execinfo.c │ └── execinfo.h ├── behavior_commands.h ├── behavior_data.h ├── behavior_table.h ├── command_macros_base.h ├── config.h ├── course_table.h ├── dialog_ids.h ├── display_lists.inl ├── eu_translation.h ├── geo_commands.h ├── gfx_dimensions.h ├── gfx_symbols.h ├── helper_macros.h ├── level_commands.h ├── level_misc_macros.h ├── level_table.h ├── libc │ ├── math.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ └── string.h ├── luigi_sounds.h ├── macro_preset_names.h ├── macro_presets.h ├── macros.h ├── macros.inc ├── make_const_nonconst.h ├── mario_animation_ids.h ├── mario_geo_switch_case_ids.h ├── model_ids.h ├── moving_texture_macros.h ├── object_constants.h ├── object_fields.h ├── platform_info.h ├── prevent_bss_reordering.h ├── segment_symbols.h ├── segments.h ├── seq_ids.h ├── seq_luigi.inc ├── seq_macros.inc ├── seq_toad.inc ├── seq_wario.inc ├── sm64.h ├── sounds.h ├── special_preset_names.h ├── special_presets.h ├── stb │ ├── stb_image.h │ └── stb_image_write.h ├── surface_terrains.h ├── textures.h ├── tinfl.h ├── toad_sounds.h ├── trig_tables.inc.c ├── types.h ├── ultra64.h └── wario_sounds.h ├── lang ├── Czech.ini ├── Dutch.ini ├── English.ini ├── French.ini ├── German.ini ├── Italian.ini ├── Japanese.ini ├── Polish.ini ├── Portuguese.ini ├── Russian.ini └── Spanish.ini ├── levels ├── bbh │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ └── model.inc.c │ │ │ ├── 21 │ │ │ └── model.inc.c │ │ │ ├── 22 │ │ │ └── model.inc.c │ │ │ ├── 23 │ │ │ └── model.inc.c │ │ │ ├── 24 │ │ │ └── model.inc.c │ │ │ ├── 25 │ │ │ └── model.inc.c │ │ │ ├── 26 │ │ │ └── model.inc.c │ │ │ ├── 27 │ │ │ └── model.inc.c │ │ │ ├── 28 │ │ │ └── model.inc.c │ │ │ ├── 29 │ │ │ └── model.inc.c │ │ │ ├── 30 │ │ │ └── model.inc.c │ │ │ ├── 31 │ │ │ └── model.inc.c │ │ │ ├── 32 │ │ │ └── model.inc.c │ │ │ ├── 33 │ │ │ └── model.inc.c │ │ │ ├── 34 │ │ │ └── model.inc.c │ │ │ ├── 35 │ │ │ └── model.inc.c │ │ │ ├── 36 │ │ │ └── model.inc.c │ │ │ ├── 37 │ │ │ └── model.inc.c │ │ │ ├── 38 │ │ │ └── model.inc.c │ │ │ ├── 39 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── room.inc.c │ ├── coffin │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── merry_go_round │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── mesh_elevator │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── moving_bookshelf │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── staircase_step │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ ├── tilting_trap_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── tumbling_platform_far │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── tumbling_platform_near │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── bitdw │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── large_platform │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── narrow_path_platform │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── octogonal_platform │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── platform_with_hill │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── platforms_and_tilting │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── platforms_and_tilting_2 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── quartz_crystal │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── quartzy_path_1 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── quartzy_path_2 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── quartzy_path_fences │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── staircase_slope_and_platform │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── starting_platform │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── track_for_pyramid_platforms │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── wooden_bridge_and_fences │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ └── wooden_platform │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ ├── collapsing_stairs_1 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── collapsing_stairs_2 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── collapsing_stairs_3 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── collapsing_stairs_4 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── collapsing_stairs_5 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── ferris_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── ferris_wheel_axle │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ ├── seesaw_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sliding_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── square_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── texture.inc.c ├── bitfs │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── trajectory.inc.c │ ├── elevator │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── moving_square_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── platform_on_track │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── seesaw_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sinking_cage_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sinking_cage_pole │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sinking_platforms │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sliding_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── stretching_platform │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── texture.inc.c │ ├── tilting_square_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── tumbling_platform_far │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── tumbling_platform_near │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── bits │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 21 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 22 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 23 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 24 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 25 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 26 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 27 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 28 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 29 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 30 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 31 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 32 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── bob │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── trajectory.inc.c │ ├── chain_chomp_gate │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── grate_door │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ ├── seesaw_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── texture.inc.c ├── bowser_1 │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ └── geo.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── bowser_2 │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ └── geo.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ ├── texture.inc.c │ └── tilting_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── bowser_3 │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── bomb_stand │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ └── geo.inc.c │ ├── falling_platform_1 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_10 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_2 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_3 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_4 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_5 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_6 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_7 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_8 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_9 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── castle_courtyard │ ├── 0_custom.rgba16.png │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── spire │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── castle_grounds │ ├── 6_custom.rgba16.png │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ ├── anim.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── castle_inside │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ │ └── model.inc.c │ │ │ ├── 21 │ │ │ │ └── model.inc.c │ │ │ ├── 22 │ │ │ │ └── model.inc.c │ │ │ ├── 23 │ │ │ │ └── model.inc.c │ │ │ ├── 24 │ │ │ │ └── model.inc.c │ │ │ ├── 25 │ │ │ │ └── model.inc.c │ │ │ ├── 26 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── room.inc.c │ │ ├── 2 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── pendulum │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ └── room.inc.c │ │ └── 3 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ ├── room.inc.c │ │ │ └── trajectory.inc.c │ ├── clock_hour_hand │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── clock_minute_hand │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── painting.inc.c │ ├── script.c │ ├── star_door │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ ├── trap_door │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── water_level_pillar │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── ccm │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 7 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ ├── 3.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 8 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ ├── 3.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── trajectory.inc.c │ │ └── 2 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── trajectory.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── ropeway_lift │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── script.c │ ├── snowman_base │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── snowman_head │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ └── geo.inc.c │ └── texture.inc.c ├── cotmc │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── movtext.inc.c │ ├── script.c │ └── texture.inc.c ├── course_defines.h ├── ddd │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ │ └── 2 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── pole │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── sub_door │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── 3.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── submarine │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ └── texture.inc.c ├── ending │ ├── geo.c │ ├── header.h │ ├── leveldata.c │ └── script.c ├── entry.c ├── entry.h ├── hmc │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ └── model.inc.c │ │ │ ├── 21 │ │ │ └── model.inc.c │ │ │ ├── 22 │ │ │ └── model.inc.c │ │ │ ├── 23 │ │ │ └── model.inc.c │ │ │ ├── 24 │ │ │ └── model.inc.c │ │ │ ├── 25 │ │ │ └── model.inc.c │ │ │ ├── 26 │ │ │ └── model.inc.c │ │ │ ├── 27 │ │ │ └── model.inc.c │ │ │ ├── 28 │ │ │ └── model.inc.c │ │ │ ├── 29 │ │ │ └── model.inc.c │ │ │ ├── 30 │ │ │ └── model.inc.c │ │ │ ├── 31 │ │ │ └── model.inc.c │ │ │ ├── 32 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── grill_door │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ ├── painting.inc.c │ │ │ ├── room.inc.c │ │ │ └── trajectory.inc.c │ ├── arrow_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── arrow_platform_button │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── elevator_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── rolling_rock │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rolling_rock_fragment_1 │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rolling_rock_fragment_2 │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ └── texture.inc.c ├── intro │ ├── geo.c │ ├── header.h │ ├── leveldata.c │ └── script.c ├── jrb │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── trajectory.inc.c │ │ └── 2 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ ├── falling_pillar │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_pillar_base │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── floating_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── rock │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── sliding_box │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ ├── unused_lid │ │ └── collision.inc.c │ └── wooden_ship │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── level_defines.h ├── level_headers.h.in ├── level_rules.mk ├── lll │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ │ ├── collision.inc.c │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── light.inc.c │ │ │ └── macro.inc.c │ │ └── 2 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── trajectory.inc.c │ ├── collapsing_wooden_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── drawbridge_part │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── long_wooden_bridge │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── moving_octagonal_mesh_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── puzzle_piece │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rolling_log │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_block_fire_bars │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_hexagonal_ring │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── sinking_rectangular_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sinking_rock_block │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sinking_square_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ ├── tilting_square_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── volcano_falling_trap │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── wooden_float_large │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── wooden_float_small │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── menu │ ├── geo.c │ ├── header.h │ ├── leveldata.c │ └── script.c ├── pss │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── rr │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ ├── 1.inc.c │ │ │ ├── 2.inc.c │ │ │ └── geo.inc.c │ │ │ ├── 12 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 21 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── trajectory.inc.c │ ├── cruiser_wing │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── donut_block │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── elevator_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── flying_carpet │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── l_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── level.yaml │ ├── leveldata.c │ ├── octagonal_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── pyramid_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_bridge_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── seesaw_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sliding_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── swinging_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ ├── tricky_triangles_1 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── tricky_triangles_2 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── tricky_triangles_3 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── tricky_triangles_4 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── tricky_triangles_5 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── sa │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── scripts.c ├── scripts.h ├── sl │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ │ └── 2 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ ├── snow_mound │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ ├── unused_cracked_ice │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── unused_ice_shard │ │ ├── geo.inc.c │ │ └── model.inc.c ├── ssl │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── geo.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ │ ├── 2 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ │ └── 3 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── eyerok_col │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── grindel │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── moving_pyramid_wall │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── pyramid_elevator │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── pyramid_top │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── spindel │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ └── tox_box │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── thi │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ ├── collision.inc.c │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── trajectory.inc.c │ │ ├── 2 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ │ └── 3 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── totwc │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── cloud │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── ttc │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ ├── clock_hand │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── elevator_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── large_gear │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── large_treadmill │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── level.yaml │ ├── leveldata.c │ ├── pendulum │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── pit_block │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── pit_block_2 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── push_block │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_cube │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_hexagon │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_prism │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_triangle │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── small_gear │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── small_treadmill │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── spinner │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── texture.inc.c ├── ttm │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 4 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 5 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 6 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 7 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 17 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 18 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 19 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 21 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ ├── painting.inc.c │ │ │ └── trajectory.inc.c │ │ ├── 2 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ │ ├── 3 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ │ └── 4 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── blue_smiley │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── moon_smiley │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rolling_log │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── slide_exit_podium │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── star_cage │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── star_smiley │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ └── yellow_smiley │ │ ├── geo.inc.c │ │ └── model.inc.c ├── vcutm │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ ├── seesaw │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── texture.inc.c ├── wdw │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ │ └── 2 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ ├── arrow_lift │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── double_arrows │ │ └── model.inc.c │ ├── express_elevator │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── hidden_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── level.yaml │ ├── leveldata.c │ ├── rectangular_floating_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── square_floating_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ └── water_level_diamond │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── wf │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ ├── 1.inc.c │ │ │ ├── 2.inc.c │ │ │ └── geo.inc.c │ │ │ ├── 6 │ │ │ ├── 1.inc.c │ │ │ ├── 2.inc.c │ │ │ └── geo.inc.c │ │ │ ├── 7 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ ├── 1.inc.c │ │ │ ├── 2.inc.c │ │ │ ├── collision.inc.c │ │ │ └── geo.inc.c │ │ │ ├── 11 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ ├── 1.inc.c │ │ │ ├── 2.inc.c │ │ │ └── geo.inc.c │ │ │ ├── 13 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ ├── 1.inc.c │ │ │ ├── 2.inc.c │ │ │ ├── 3.inc.c │ │ │ └── geo.inc.c │ │ │ ├── 16 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ ├── beta_extending_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── breakable_wall_left │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── breakable_wall_right │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── extending_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── kickable_board │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── large_bomp │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── level.yaml │ ├── leveldata.c │ ├── rotating_platform │ │ └── collision.inc.c │ ├── rotating_wooden_platform │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── script.c │ ├── sliding_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── small_bomp │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── texture.inc.c │ ├── tower_door │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── tumbling_bridge_far │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── tumbling_bridge_near │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c └── wmotr │ ├── areas │ └── 1 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ ├── macro.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── lib ├── coopnet │ ├── README.md │ ├── android │ │ ├── arm64-v8a │ │ │ ├── libcoopnet.a │ │ │ └── libjuice.a │ │ └── x86_64 │ │ │ ├── libcoopnet.a │ │ │ └── libjuice.a │ ├── include │ │ └── libcoopnet.h │ ├── linux │ │ ├── libcoopnet-arm.a │ │ ├── libcoopnet-arm64.a │ │ ├── libcoopnet.a │ │ ├── libjuice-arm.a │ │ ├── libjuice-arm64.a │ │ └── libjuice.a │ ├── mac_arm │ │ ├── .DS_Store │ │ ├── libcoopnet.dylib │ │ └── libjuice.1.6.2.dylib │ ├── mac_intel │ │ ├── libcoopnet.dylib │ │ └── libjuice.1.6.2.dylib │ ├── win32 │ │ ├── libcoopnet.a │ │ └── libjuice.a │ └── win64 │ │ ├── libcoopnet.a │ │ └── libjuice.a ├── curl │ ├── android │ │ ├── arm64-v8a │ │ │ └── libcurl.so │ │ └── x86_64 │ │ │ └── libcurl.so │ └── include │ │ └── curl │ │ ├── curl.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── header.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── options.h │ │ ├── stdcheaders.h │ │ ├── system.h │ │ ├── typecheck-gcc.h │ │ ├── urlapi.h │ │ └── websockets.h ├── discord │ ├── libdiscord-rpc.dll │ ├── libdiscord-rpc.dylib │ └── libdiscord-rpc.so ├── discordsdk │ ├── aarch64 │ │ ├── discord_game_sdk.bundle │ │ ├── discord_game_sdk.dylib │ │ └── libdiscord_game_sdk.dylib │ ├── discord_game_sdk.bundle │ ├── discord_game_sdk.dll │ ├── discord_game_sdk.dll.lib │ ├── discord_game_sdk.dylib │ ├── libdiscord_game_sdk.dylib │ ├── libdiscord_game_sdk.so │ └── x86 │ │ ├── discord_game_sdk.dll │ │ └── discord_game_sdk.dll.lib ├── lua │ ├── android │ │ ├── arm64-v8a │ │ │ └── liblua.a │ │ └── x86_64 │ │ │ └── liblua.a │ ├── include │ │ ├── lauxlib.h │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ └── lualib.h │ ├── linux │ │ ├── liblua53-arm.a │ │ ├── liblua53-arm64.a │ │ ├── liblua53.a │ │ └── liblua54.a │ ├── mac_arm │ │ └── liblua53.a │ ├── mac_intel │ │ └── liblua53.a │ ├── win32 │ │ └── liblua53.a │ └── win64 │ │ └── liblua53.a ├── sdl2 │ ├── android │ │ ├── arm64-v8a │ │ │ └── libSDL2.so │ │ └── x86_64 │ │ │ └── libSDL2.so │ └── include │ │ └── SDL2 │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_emscripten.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_ngage.h │ │ ├── SDL_config_os2.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_wingdk.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_xbox.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_guid.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hidapi.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_locale.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_misc.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_revision.h.cmake │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h ├── src │ ├── alBnkfNew.c │ ├── guLookAtRef.c │ ├── guMtxF2L.c │ ├── guNormalize.c │ ├── guOrthoF.c │ ├── guPerspectiveF.c │ ├── guRotateF.c │ ├── guScaleF.c │ ├── guTranslateF.c │ ├── hardware.h │ ├── ldiv.c │ ├── leointerrupt.c │ ├── libaudio_internal.h │ ├── libultra_internal.h │ ├── new_func.h │ ├── os.h │ ├── osAi.h │ ├── osContInternal.h │ └── unk_shindou_file_3.c └── zlib │ └── android │ ├── arm64-v8a │ └── libz.a │ └── x86_64 │ └── libz.a ├── mods ├── arena │ ├── aa-arena-constants.lua │ ├── actors │ │ ├── arena_ball_geo.bin │ │ ├── arena_flag_blue_geo.bin │ │ ├── arena_flag_red_geo.bin │ │ ├── arena_flag_white_geo.bin │ │ ├── cannon_box_geo.bin │ │ ├── fire_flower.bin │ │ ├── hammer_geo.bin │ │ ├── koth_active_geo.bin │ │ ├── koth_geo.bin │ │ ├── skybox_blimpcity_geo.bin │ │ ├── spring_bottom_geo.bin │ │ └── spring_top_geo.bin │ ├── arena-flag.lua │ ├── arena-hud.lua │ ├── arena-item-held.lua │ ├── arena-item.lua │ ├── arena-koth-point.lua │ ├── arena-ladder.lua │ ├── arena-lighting.lua │ ├── arena-moveset.lua │ ├── arena-network.lua │ ├── arena-player.lua │ ├── arena-proj-bobomb.lua │ ├── arena-proj-cannon-ball.lua │ ├── arena-proj-flame.lua │ ├── arena-scrolling-textures.lua │ ├── arena-skybox.lua │ ├── arena-sound.lua │ ├── arena-sparkle.lua │ ├── arena-spawn.lua │ ├── arena-spring.lua │ ├── arena-utils.lua │ ├── levels │ │ ├── level_arena_citadel_entry.lvl │ │ ├── level_arena_city_entry.lvl │ │ ├── level_arena_forts_entry.lvl │ │ ├── level_arena_origin_entry.lvl │ │ ├── level_arena_pillars_entry.lvl │ │ ├── level_arena_rainbow_entry.lvl │ │ ├── level_arena_sky_beach_entry.lvl │ │ └── level_arena_spire_entry.lvl │ ├── main.lua │ ├── sound │ │ ├── city.ogg │ │ ├── rainbow.ogg │ │ └── snow.ogg │ └── textures │ │ ├── arena-flag.tex │ │ └── arena-koth.tex ├── char-select-extra-chars │ ├── actors │ │ ├── birdo_cap_geo.bin │ │ ├── birdo_geo.bin │ │ ├── birdo_metal_cap_geo.bin │ │ ├── birdo_metal_wing_cap_geo.bin │ │ ├── birdo_wing_cap_geo.bin │ │ ├── daisy_cap_geo.bin │ │ ├── daisy_geo.bin │ │ ├── daisy_metal_cap_geo.bin │ │ ├── daisy_metal_wing_cap_geo.bin │ │ ├── daisy_wing_cap_geo.bin │ │ ├── egg_collision.col │ │ ├── egg_geo.bin │ │ ├── foreman_spike_cap_geo.bin │ │ ├── foreman_spike_geo.bin │ │ ├── foreman_spike_metal_cap_geo.bin │ │ ├── foreman_spike_metal_wing_cap_geo.bin │ │ ├── foreman_spike_wing_cap_geo.bin │ │ ├── pauline_cap_geo.bin │ │ ├── pauline_geo.bin │ │ ├── pauline_metal_cap_geo.bin │ │ ├── pauline_metal_wing_cap_geo.bin │ │ ├── pauline_wing_cap_geo.bin │ │ ├── peach_player_cap_geo.bin │ │ ├── peach_player_geo.bin │ │ ├── peach_player_metal_cap_geo.bin │ │ ├── peach_player_metal_wing_cap_geo.bin │ │ ├── peach_player_wing_cap_geo.bin │ │ ├── rosalina_cap_geo.bin │ │ ├── rosalina_geo.bin │ │ ├── rosalina_metal_cap_geo.bin │ │ ├── rosalina_metal_wing_cap_geo.bin │ │ ├── rosalina_wing_cap_geo.bin │ │ ├── spin_attack_geo.bin │ │ ├── toadette_cap_geo.bin │ │ ├── toadette_geo.bin │ │ ├── toadette_metal_cap_geo.bin │ │ ├── toadette_metal_wing_cap_geo.bin │ │ ├── toadette_wing_cap_geo.bin │ │ ├── yoshi_player_cap_geo.bin │ │ ├── yoshi_player_geo.bin │ │ ├── yoshi_player_metal_cap_geo.bin │ │ ├── yoshi_player_metal_wing_cap_geo.bin │ │ └── yoshi_player_wing_cap_geo.bin │ ├── custom-anims.lua │ ├── main.lua │ ├── movesets-pauline.lua │ ├── movesets.lua │ ├── sound │ │ ├── birdo_attacked.ogg │ │ ├── birdo_coughing1.ogg │ │ ├── birdo_coughing2.ogg │ │ ├── birdo_coughing3.ogg │ │ ├── birdo_doh.ogg │ │ ├── birdo_drowning.ogg │ │ ├── birdo_dying.ogg │ │ ├── birdo_euuh.ogg │ │ ├── birdo_ground_pound_wah.ogg │ │ ├── birdo_haha.ogg │ │ ├── birdo_haha2.ogg │ │ ├── birdo_hello.ogg │ │ ├── birdo_herewego.ogg │ │ ├── birdo_hoohoo.ogg │ │ ├── birdo_hrmm.ogg │ │ ├── birdo_imatired.ogg │ │ ├── birdo_letsago.ogg │ │ ├── birdo_mamamia.ogg │ │ ├── birdo_on_fire.ogg │ │ ├── birdo_ooof.ogg │ │ ├── birdo_ooof2.ogg │ │ ├── birdo_panting.ogg │ │ ├── birdo_panting_cold.ogg │ │ ├── birdo_punch_hoo.ogg │ │ ├── birdo_punch_wah.ogg │ │ ├── birdo_punch_yah.ogg │ │ ├── birdo_snoring1.ogg │ │ ├── birdo_snoring2.ogg │ │ ├── birdo_snoring3.ogg │ │ ├── birdo_solonga_bowser.ogg │ │ ├── birdo_twirl_bounce.ogg │ │ ├── birdo_uh.ogg │ │ ├── birdo_uh2.ogg │ │ ├── birdo_uh2_2.ogg │ │ ├── birdo_waaaooow.ogg │ │ ├── birdo_wah2.ogg │ │ ├── birdo_whoa.ogg │ │ ├── birdo_yah_wah_hoo1.ogg │ │ ├── birdo_yah_wah_hoo2.ogg │ │ ├── birdo_yah_wah_hoo3.ogg │ │ ├── birdo_yahoo.ogg │ │ ├── birdo_yahoo1.ogg │ │ ├── birdo_yahoo2.ogg │ │ ├── birdo_yahoo3.ogg │ │ ├── birdo_yahoo4.ogg │ │ ├── birdo_yahoo5.ogg │ │ ├── birdo_yawning.ogg │ │ ├── daisy_attacked_1.ogg │ │ ├── daisy_attacked_2.ogg │ │ ├── daisy_attacked_3.ogg │ │ ├── daisy_coughing1.ogg │ │ ├── daisy_coughing2.ogg │ │ ├── daisy_coughing3.ogg │ │ ├── daisy_doh_1.ogg │ │ ├── daisy_doh_2.ogg │ │ ├── daisy_double_jump.ogg │ │ ├── daisy_drowning_1.ogg │ │ ├── daisy_dying.ogg │ │ ├── daisy_eeuh.ogg │ │ ├── daisy_ground_pound_wah.ogg │ │ ├── daisy_haha.ogg │ │ ├── daisy_haha_2.ogg │ │ ├── daisy_here_we_go.ogg │ │ ├── daisy_hoohoo.ogg │ │ ├── daisy_hrmm.ogg │ │ ├── daisy_ima_tired.ogg │ │ ├── daisy_lets_a_go.ogg │ │ ├── daisy_mama_mia.ogg │ │ ├── daisy_on_fire.ogg │ │ ├── daisy_oof.ogg │ │ ├── daisy_ooof2.ogg │ │ ├── daisy_panting.ogg │ │ ├── daisy_panting_cold.ogg │ │ ├── daisy_punch_hoo.ogg │ │ ├── daisy_punch_wah.ogg │ │ ├── daisy_punch_yah.ogg │ │ ├── daisy_snoring1.ogg │ │ ├── daisy_snoring2.ogg │ │ ├── daisy_snoring3.ogg │ │ ├── daisy_so_longa_bowser.ogg │ │ ├── daisy_twirl_bounce.ogg │ │ ├── daisy_uh.ogg │ │ ├── daisy_uh2.ogg │ │ ├── daisy_uh2_2.ogg │ │ ├── daisy_waaaooow.ogg │ │ ├── daisy_wah2.ogg │ │ ├── daisy_whoa.ogg │ │ ├── daisy_yah1.ogg │ │ ├── daisy_yah2.ogg │ │ ├── daisy_yah3.ogg │ │ ├── daisy_yahoo.ogg │ │ ├── daisy_yahoo2.ogg │ │ ├── daisy_yahoo3.ogg │ │ ├── daisy_yahoo4.ogg │ │ ├── daisy_yawning.ogg │ │ ├── foreman_spike_attacked.ogg │ │ ├── foreman_spike_coughing1.ogg │ │ ├── foreman_spike_coughing2.ogg │ │ ├── foreman_spike_coughing3.ogg │ │ ├── foreman_spike_doh.ogg │ │ ├── foreman_spike_drowning.ogg │ │ ├── foreman_spike_dying.ogg │ │ ├── foreman_spike_eeuh.ogg │ │ ├── foreman_spike_ground_pound_wah.ogg │ │ ├── foreman_spike_haha.ogg │ │ ├── foreman_spike_haha2.ogg │ │ ├── foreman_spike_hello.ogg │ │ ├── foreman_spike_herewego.ogg │ │ ├── foreman_spike_hoohoo.ogg │ │ ├── foreman_spike_hrmm.ogg │ │ ├── foreman_spike_imatired.ogg │ │ ├── foreman_spike_letsago.ogg │ │ ├── foreman_spike_mamamia.ogg │ │ ├── foreman_spike_on_fire.ogg │ │ ├── foreman_spike_ooof.ogg │ │ ├── foreman_spike_ooof2.ogg │ │ ├── foreman_spike_panting.ogg │ │ ├── foreman_spike_panting_cold.ogg │ │ ├── foreman_spike_punch_hoo.ogg │ │ ├── foreman_spike_punch_wah.ogg │ │ ├── foreman_spike_punch_yah.ogg │ │ ├── foreman_spike_snoring1.ogg │ │ ├── foreman_spike_snoring2.ogg │ │ ├── foreman_spike_snoring3.ogg │ │ ├── foreman_spike_solonga_bowser.ogg │ │ ├── foreman_spike_twirl_bounce.ogg │ │ ├── foreman_spike_uh.ogg │ │ ├── foreman_spike_uh2.ogg │ │ ├── foreman_spike_uh2_2.ogg │ │ ├── foreman_spike_waaaooow.ogg │ │ ├── foreman_spike_wah2.ogg │ │ ├── foreman_spike_whoa.ogg │ │ ├── foreman_spike_yah_wah_hoo1.ogg │ │ ├── foreman_spike_yah_wah_hoo2.ogg │ │ ├── foreman_spike_yah_wah_hoo3.ogg │ │ ├── foreman_spike_yahoo.ogg │ │ ├── foreman_spike_yahoo1.ogg │ │ ├── foreman_spike_yahoo2.ogg │ │ ├── foreman_spike_yahoo3.ogg │ │ ├── foreman_spike_yahoo4.ogg │ │ ├── foreman_spike_yahoo5.ogg │ │ ├── foreman_spike_yawning.ogg │ │ ├── pauline_attacked.ogg │ │ ├── pauline_coughing1.ogg │ │ ├── pauline_coughing2.ogg │ │ ├── pauline_coughing3.ogg │ │ ├── pauline_doh.ogg │ │ ├── pauline_drowning.ogg │ │ ├── pauline_dying.ogg │ │ ├── pauline_eeuh.ogg │ │ ├── pauline_ground_pound_wah.ogg │ │ ├── pauline_haha.ogg │ │ ├── pauline_haha2.ogg │ │ ├── pauline_hello.ogg │ │ ├── pauline_herewego.ogg │ │ ├── pauline_hoohoo.ogg │ │ ├── pauline_hrmm.ogg │ │ ├── pauline_imatired.ogg │ │ ├── pauline_letsago.ogg │ │ ├── pauline_mamamia.ogg │ │ ├── pauline_okeydokey.ogg │ │ ├── pauline_on_fire.ogg │ │ ├── pauline_ooof.ogg │ │ ├── pauline_ooof2.ogg │ │ ├── pauline_panting.ogg │ │ ├── pauline_panting_cold.ogg │ │ ├── pauline_press_start_to_play.ogg │ │ ├── pauline_punch_hoo.ogg │ │ ├── pauline_punch_wah.ogg │ │ ├── pauline_punch_yah.ogg │ │ ├── pauline_snoring1.ogg │ │ ├── pauline_snoring2.ogg │ │ ├── pauline_snoring3.ogg │ │ ├── pauline_solonga_bowser.ogg │ │ ├── pauline_twirl_bounce.ogg │ │ ├── pauline_uh.ogg │ │ ├── pauline_uh2.ogg │ │ ├── pauline_uh2_2.ogg │ │ ├── pauline_waaaooow.ogg │ │ ├── pauline_wah2.ogg │ │ ├── pauline_whoa.ogg │ │ ├── pauline_yah_wah_hoo1.ogg │ │ ├── pauline_yah_wah_hoo2.ogg │ │ ├── pauline_yah_wah_hoo3.ogg │ │ ├── pauline_yahoo.ogg │ │ ├── pauline_yahoo1.ogg │ │ ├── pauline_yahoo2.ogg │ │ ├── pauline_yahoo3.ogg │ │ ├── pauline_yahoo4.ogg │ │ ├── pauline_yahoo5.ogg │ │ ├── pauline_yawning.ogg │ │ ├── peach_attacked.ogg │ │ ├── peach_coughing1.ogg │ │ ├── peach_coughing2.ogg │ │ ├── peach_coughing3.ogg │ │ ├── peach_doh.ogg │ │ ├── peach_drowning.ogg │ │ ├── peach_dying.ogg │ │ ├── peach_euuh.ogg │ │ ├── peach_float.ogg │ │ ├── peach_ground_pound_wah.ogg │ │ ├── peach_haha.ogg │ │ ├── peach_herewego.ogg │ │ ├── peach_hoohoo.ogg │ │ ├── peach_hrmm.ogg │ │ ├── peach_imatired.ogg │ │ ├── peach_letsago.ogg │ │ ├── peach_mamamia.ogg │ │ ├── peach_on_fire.ogg │ │ ├── peach_ooof.ogg │ │ ├── peach_ooof2.ogg │ │ ├── peach_panting.ogg │ │ ├── peach_panting_cold.ogg │ │ ├── peach_punch_hoo.ogg │ │ ├── peach_punch_wah.ogg │ │ ├── peach_punch_yah.ogg │ │ ├── peach_snoring1.ogg │ │ ├── peach_snoring2.ogg │ │ ├── peach_snoring3.ogg │ │ ├── peach_solonga_bowser.ogg │ │ ├── peach_twirl_bounce.ogg │ │ ├── peach_uh.ogg │ │ ├── peach_uh2.ogg │ │ ├── peach_uh2_2.ogg │ │ ├── peach_waaaooow.ogg │ │ ├── peach_whoa.ogg │ │ ├── peach_yah_wah_hoo1.ogg │ │ ├── peach_yah_wah_hoo2.ogg │ │ ├── peach_yah_wha_hoo3.ogg │ │ ├── peach_yahoo.ogg │ │ ├── peach_yahoo1.ogg │ │ ├── peach_yahoo2.ogg │ │ ├── peach_yahoo3.ogg │ │ ├── peach_yahoo4.ogg │ │ ├── peach_yahoo5.ogg │ │ ├── peach_yawning.ogg │ │ ├── rosalina_attacked.ogg │ │ ├── rosalina_coughing1.ogg │ │ ├── rosalina_coughing2.ogg │ │ ├── rosalina_coughing3.ogg │ │ ├── rosalina_doh.ogg │ │ ├── rosalina_drowning.ogg │ │ ├── rosalina_dying.ogg │ │ ├── rosalina_eeuh.ogg │ │ ├── rosalina_ground_pound_wah.ogg │ │ ├── rosalina_haha.ogg │ │ ├── rosalina_haha2.ogg │ │ ├── rosalina_hello.ogg │ │ ├── rosalina_hello1.ogg │ │ ├── rosalina_hello2.ogg │ │ ├── rosalina_hello3.ogg │ │ ├── rosalina_hello4.ogg │ │ ├── rosalina_herewego.ogg │ │ ├── rosalina_hoohoo.ogg │ │ ├── rosalina_hrmm.ogg │ │ ├── rosalina_imatired.ogg │ │ ├── rosalina_letsago.ogg │ │ ├── rosalina_mamamia.ogg │ │ ├── rosalina_okeydokey.ogg │ │ ├── rosalina_on_fire.ogg │ │ ├── rosalina_ooof.ogg │ │ ├── rosalina_ooof2.ogg │ │ ├── rosalina_panting.ogg │ │ ├── rosalina_panting_cold.ogg │ │ ├── rosalina_punch_hoo.ogg │ │ ├── rosalina_punch_wah.ogg │ │ ├── rosalina_punch_yah.ogg │ │ ├── rosalina_snoring1.ogg │ │ ├── rosalina_snoring2.ogg │ │ ├── rosalina_snoring3.ogg │ │ ├── rosalina_solonga_bowser.ogg │ │ ├── rosalina_twirl_bounce.ogg │ │ ├── rosalina_uh.ogg │ │ ├── rosalina_uh2.ogg │ │ ├── rosalina_uh2_2.ogg │ │ ├── rosalina_waaaooow.ogg │ │ ├── rosalina_whoa.ogg │ │ ├── rosalina_yah_wah_hoo1.ogg │ │ ├── rosalina_yah_wah_hoo2.ogg │ │ ├── rosalina_yah_wah_hoo3.ogg │ │ ├── rosalina_yahoo.ogg │ │ ├── rosalina_yahoo1.ogg │ │ ├── rosalina_yahoo2.ogg │ │ ├── rosalina_yahoo3.ogg │ │ ├── rosalina_yahoo4.ogg │ │ ├── rosalina_yahoo5.ogg │ │ ├── rosalina_yawning.ogg │ │ ├── spin_attack.ogg │ │ ├── spit.ogg │ │ ├── toadette_attacked.ogg │ │ ├── toadette_coughing1.ogg │ │ ├── toadette_coughing2.ogg │ │ ├── toadette_coughing3.ogg │ │ ├── toadette_doh.ogg │ │ ├── toadette_drowning.ogg │ │ ├── toadette_dying.ogg │ │ ├── toadette_euuh.ogg │ │ ├── toadette_ground_pound_wah.ogg │ │ ├── toadette_haha.ogg │ │ ├── toadette_haha2.ogg │ │ ├── toadette_hello.ogg │ │ ├── toadette_herewego.ogg │ │ ├── toadette_hoohoo.ogg │ │ ├── toadette_hrmm.ogg │ │ ├── toadette_imatired.ogg │ │ ├── toadette_letsago.ogg │ │ ├── toadette_mamamia.ogg │ │ ├── toadette_on_fire.ogg │ │ ├── toadette_ooof.ogg │ │ ├── toadette_ooof2.ogg │ │ ├── toadette_panting.ogg │ │ ├── toadette_panting_cold.ogg │ │ ├── toadette_punch_hoo.ogg │ │ ├── toadette_punch_wah.ogg │ │ ├── toadette_punch_yah.ogg │ │ ├── toadette_snoring1.ogg │ │ ├── toadette_snoring2.ogg │ │ ├── toadette_snoring3.ogg │ │ ├── toadette_solonga_bowser.ogg │ │ ├── toadette_twirl_bounce.ogg │ │ ├── toadette_uh.ogg │ │ ├── toadette_uh2.ogg │ │ ├── toadette_uh2_2.ogg │ │ ├── toadette_waaaooow.ogg │ │ ├── toadette_wah.ogg │ │ ├── toadette_whoa.ogg │ │ ├── toadette_yah.ogg │ │ ├── toadette_yah_wah_hoo1.ogg │ │ ├── toadette_yah_wah_hoo2.ogg │ │ ├── toadette_yah_wah_hoo3.ogg │ │ ├── toadette_yahoo.ogg │ │ ├── toadette_yahoo1.ogg │ │ ├── toadette_yahoo2.ogg │ │ ├── toadette_yahoo3.ogg │ │ ├── toadette_yahoo4.ogg │ │ ├── toadette_yahoo5.ogg │ │ ├── toadette_yawning.ogg │ │ ├── yoshi_attacked.ogg │ │ ├── yoshi_coughing1.ogg │ │ ├── yoshi_coughing2.ogg │ │ ├── yoshi_coughing3.ogg │ │ ├── yoshi_doh.ogg │ │ ├── yoshi_drowning.ogg │ │ ├── yoshi_dying.ogg │ │ ├── yoshi_euuh.ogg │ │ ├── yoshi_flutter.ogg │ │ ├── yoshi_ground_pound_wah.ogg │ │ ├── yoshi_haha.ogg │ │ ├── yoshi_haha2.ogg │ │ ├── yoshi_hello.ogg │ │ ├── yoshi_herewego.ogg │ │ ├── yoshi_hoohoo.ogg │ │ ├── yoshi_hrmm.ogg │ │ ├── yoshi_imatired.ogg │ │ ├── yoshi_letsago.ogg │ │ ├── yoshi_mamamia.ogg │ │ ├── yoshi_on_fire.ogg │ │ ├── yoshi_ooof.ogg │ │ ├── yoshi_ooof2.ogg │ │ ├── yoshi_panting.ogg │ │ ├── yoshi_panting_cold.ogg │ │ ├── yoshi_punch_hoo.ogg │ │ ├── yoshi_punch_wah.ogg │ │ ├── yoshi_punch_yah.ogg │ │ ├── yoshi_snoring1.ogg │ │ ├── yoshi_snoring2.ogg │ │ ├── yoshi_snoring3.ogg │ │ ├── yoshi_solonga_bowser.ogg │ │ ├── yoshi_twirl_bounce.ogg │ │ ├── yoshi_uh.ogg │ │ ├── yoshi_uh2.ogg │ │ ├── yoshi_uh2_2.ogg │ │ ├── yoshi_waaaooow.ogg │ │ ├── yoshi_wah.ogg │ │ ├── yoshi_whoa.ogg │ │ ├── yoshi_yah_wah_hoo1.ogg │ │ ├── yoshi_yah_wah_hoo2.ogg │ │ ├── yoshi_yah_wah_hoo3.ogg │ │ ├── yoshi_yahoo.ogg │ │ ├── yoshi_yahoo1.ogg │ │ ├── yoshi_yahoo2.ogg │ │ ├── yoshi_yahoo3.ogg │ │ ├── yoshi_yahoo4.ogg │ │ ├── yoshi_yahoo5.ogg │ │ └── yoshi_yawning.ogg │ └── textures │ │ ├── icon-birdo.tex │ │ ├── icon-daisy.tex │ │ ├── icon-pauline.tex │ │ ├── icon-peach.tex │ │ ├── icon-rosalina.tex │ │ ├── icon-spike.tex │ │ ├── icon-toadette.tex │ │ └── icon-yoshi.tex ├── char-select-the-originals │ ├── actors │ │ ├── cj_luigi_geo.bin │ │ ├── djoslin_toad_geo.bin │ │ ├── fluffa_waluigi_geo.bin │ │ ├── fluffa_wario_geo.bin │ │ ├── keeb_waluigi_geo.bin │ │ └── vl_tone_luigi_geo.bin │ ├── main.lua │ ├── sound │ │ ├── 00_cj_luigi_jump_hoo.aiff │ │ ├── 00_cj_luigi_waaaooow.aiff │ │ ├── 01_cj_luigi_hoohoo.aiff │ │ ├── 01_cj_luigi_jump_wah.aiff │ │ ├── 02_cj_luigi_panting.aiff │ │ ├── 02_cj_luigi_yah.aiff │ │ ├── 03_cj_luigi_dying.aiff │ │ ├── 03_cj_luigi_haha.aiff │ │ ├── 04_cj_luigi_on_fire.aiff │ │ ├── 04_cj_luigi_yahoo.aiff │ │ ├── 05_cj_luigi_uh.aiff │ │ ├── 05_cj_luigi_uh2.aiff │ │ ├── 06_cj_luigi_coughing.aiff │ │ ├── 06_cj_luigi_hrmm.aiff │ │ ├── 07_cj_luigi_wah2.aiff │ │ ├── 08_cj_luigi_punch_yah.aiff │ │ ├── 08_cj_luigi_whoa.aiff │ │ ├── 09_cj_luigi_eeuh.aiff │ │ ├── 09_cj_luigi_punch_hoo.aiff │ │ ├── 0A_cj_luigi_attacked.aiff │ │ ├── 0A_cj_luigi_mama_mia.aiff │ │ ├── 0B_cj_luigi_okey_dokey.aiff │ │ ├── 0B_cj_luigi_ooof.aiff │ │ ├── 0C_cj_luigi_drowning.aiff │ │ ├── 0C_cj_luigi_here_we_go.aiff │ │ ├── 0D_cj_luigi_yawning.aiff │ │ ├── 0E_cj_luigi_snoring1.aiff │ │ ├── 0F_cj_luigi_snoring2.aiff │ │ ├── 10_cj_luigi_doh.aiff │ │ ├── 11_cj_luigi_game_over.aiff │ │ ├── 12_cj_luigi_hello.aiff │ │ ├── 13_cj_luigi_press_start_to_play.aiff │ │ ├── 14_cj_luigi_twirl_bounce.aiff │ │ ├── 15_cj_luigi_snoring3.aiff │ │ ├── 16_cj_luigi_so_longa_bowser.aiff │ │ ├── 17_cj_luigi_ima_tired.aiff │ │ ├── 18_cj_luigi_waha.aiff │ │ ├── 19_cj_luigi_yippee.aiff │ │ └── 1A_cj_luigi_lets_a_go.aiff │ └── textures │ │ ├── cjes-luigi.tex │ │ ├── djoslin-toad.tex │ │ ├── fluffa-waluigi.tex │ │ ├── fluffa-wario.tex │ │ ├── keeb-waluigi.tex │ │ └── vl-tones-luigi.tex ├── character-select-coop │ ├── a-github.lua │ ├── a-utils.lua │ ├── actors │ │ └── armature_geo.bin │ ├── dialog.lua │ ├── main.lua │ ├── n-hud.lua │ ├── o-api.lua │ ├── textures │ │ ├── char-select-custom-course-bottom.tex │ │ ├── char-select-custom-course-top.tex │ │ ├── char-select-custom-meter-left.tex │ │ ├── char-select-custom-meter-pie1.tex │ │ ├── char-select-custom-meter-pie2.tex │ │ ├── char-select-custom-meter-pie3.tex │ │ ├── char-select-custom-meter-pie4.tex │ │ ├── char-select-custom-meter-pie5.tex │ │ ├── char-select-custom-meter-pie6.tex │ │ ├── char-select-custom-meter-pie7.tex │ │ ├── char-select-custom-meter-pie8.tex │ │ ├── char-select-custom-meter-right.tex │ │ ├── char-select-luigi-meter-left.tex │ │ ├── char-select-luigi-meter-right.tex │ │ ├── char-select-text.tex │ │ ├── char-select-toad-meter-left.tex │ │ ├── char-select-toad-meter-right.tex │ │ ├── char-select-triangle.tex │ │ ├── char-select-waluigi-meter-left.tex │ │ ├── char-select-waluigi-meter-right.tex │ │ ├── char-select-wario-meter-left.tex │ │ └── char-select-wario-meter-right.tex │ ├── z-moveset.lua │ ├── z-palettes.lua │ └── z-voice.lua ├── cheats.lua ├── day-night-cycle │ ├── a-utils.lua │ ├── actors │ │ └── dnc_skybox_geo.bin │ ├── b-constants.lua │ ├── b-time.lua │ ├── data │ │ ├── bhvBird.bhv │ │ ├── bhvBirdsSoundLoop.bhv │ │ ├── bhvButterfly.bhv │ │ ├── bhvDNCNoSkybox.bhv │ │ └── bhvDNCSkybox.bhv │ ├── main.lua │ ├── skybox.lua │ └── sound │ │ ├── night_level_grass.m64 │ │ ├── night_level_hot.m64 │ │ ├── night_level_inside_castle.m64 │ │ ├── night_level_slide.m64 │ │ ├── night_level_snow.m64 │ │ ├── night_level_underground.m64 │ │ └── night_level_water.m64 ├── faster-swimming.lua ├── hide-and-seek.lua ├── personal-starcount-ex.lua ├── sm74 │ ├── actors │ │ ├── collision_star_door.col │ │ ├── grate_door_col.col │ │ ├── grate_door_geo.bin │ │ ├── lll_col_rotate_firebars.col │ │ ├── lll_geo_rotate_firebars.bin │ │ ├── lll_geo_sinking_rock.bin │ │ ├── lll_sinking_rock_col.col │ │ ├── star_door_geo.bin │ │ └── star_geo.bin │ ├── bhv-overrides.lua │ ├── course.lua │ ├── dialog.lua │ ├── levels │ │ ├── level_bbh_entry.lvl │ │ ├── level_bitdw_entry.lvl │ │ ├── level_bitfs_entry.lvl │ │ ├── level_bits_entry.lvl │ │ ├── level_bob_entry.lvl │ │ ├── level_bowser_1_entry.lvl │ │ ├── level_bowser_2_entry.lvl │ │ ├── level_bowser_3_entry.lvl │ │ ├── level_castle_courtyard_entry.lvl │ │ ├── level_castle_grounds_entry.lvl │ │ ├── level_castle_inside_entry.lvl │ │ ├── level_ccm_entry.lvl │ │ ├── level_cotmc_entry.lvl │ │ ├── level_ddd_entry.lvl │ │ ├── level_hmc_entry.lvl │ │ ├── level_jrb_entry.lvl │ │ ├── level_lll_entry.lvl │ │ ├── level_pss_entry.lvl │ │ ├── level_rr_entry.lvl │ │ ├── level_sa_entry.lvl │ │ ├── level_sl_entry.lvl │ │ ├── level_ssl_entry.lvl │ │ ├── level_thi_entry.lvl │ │ ├── level_totwc_entry.lvl │ │ ├── level_ttc_entry.lvl │ │ ├── level_ttm_entry.lvl │ │ ├── level_vcutm_entry.lvl │ │ ├── level_wdw_entry.lvl │ │ ├── level_wf_entry.lvl │ │ └── level_wmotr_entry.lvl │ ├── main.lua │ ├── sound │ │ ├── 02_Seq_sm74_custom.m64 │ │ ├── 03_Seq_sm74_custom.m64 │ │ ├── 04_Seq_sm74_custom.m64 │ │ ├── 05_Seq_sm74_custom.m64 │ │ ├── 06_Seq_sm74_custom.m64 │ │ ├── 08_Seq_sm74_custom.m64 │ │ ├── 09_Seq_sm74_custom.m64 │ │ ├── 0B_Seq_sm74_custom.m64 │ │ ├── 0C_Seq_sm74_custom.m64 │ │ ├── 11_Seq_sm74_custom.m64 │ │ ├── 13_Seq_sm74_custom.m64 │ │ ├── 18_Seq_sm74_custom.m64 │ │ ├── 1E_Seq_sm74_custom.m64 │ │ ├── 21_Seq_sm74_custom.m64 │ │ ├── 22_Seq_sm74_custom.m64 │ │ ├── 23_Seq_sm74EE_custom.m64 │ │ ├── 24_Seq_sm74EE_custom.m64 │ │ ├── 25_Seq_sm74EE_custom.m64 │ │ ├── 26_Seq_sm74EE_custom.m64 │ │ ├── 27_Seq_sm74EE_custom.m64 │ │ ├── 28_Seq_sm74EE_custom.m64 │ │ ├── 29_Seq_sm74EE_custom.m64 │ │ ├── 2A_Seq_sm74EE_custom.m64 │ │ ├── 2B_Seq_sm74EE_custom.m64 │ │ ├── 2C_Seq_sm74EE_custom.m64 │ │ ├── 2D_Seq_sm74EE_custom.m64 │ │ ├── 2E_Seq_sm74EE_custom.m64 │ │ ├── 2F_Seq_sm74EE_custom.m64 │ │ ├── 30_Seq_sm74EE_custom.m64 │ │ └── 31_Seq_sm74EE_custom.m64 │ └── stars.lua └── star-road │ ├── actors │ ├── bobomb_buddy_geo.bin │ ├── bowser_geo.bin │ ├── bowser_geo_no_shadow.bin │ ├── breakable_box_geo.bin │ ├── breakable_box_seg8_collision_08012D70.col │ ├── breakable_box_small_geo.bin │ ├── bubbly_tree_geo.bin │ ├── bully_boss_geo.bin │ ├── bully_geo.bin │ ├── cabin_door_geo.bin │ ├── cannon_lid_seg8_collision_08004950.col │ ├── castle_door_0_star_geo.bin │ ├── castle_door_1_star_geo.bin │ ├── castle_door_3_star_geo.bin │ ├── castle_door_geo.bin │ ├── col_dorrie_geo_0x600cfd8.col │ ├── custom_collision_door_30_stars.col │ ├── custom_shyguy_geo.bin │ ├── dorrie_geo.bin │ ├── dorrie_seg6_collision_0600F644.col │ ├── dorrie_seg6_collision_0600FBB8.col │ ├── exclamation_box_geo.bin │ ├── exclamation_box_outline_geo.bin │ ├── exclamation_box_outline_seg8_collision_08025F78.col │ ├── eyerok_left_hand_geo.bin │ ├── eyerok_right_hand_geo.bin │ ├── flyguy_geo.bin │ ├── haunted_door_geo.bin │ ├── hazy_maze_door_geo.bin │ ├── inside_castle_seg7_custom_collision_star_door.col │ ├── key_door_geo.bin │ ├── metal_box_geo.bin │ ├── metal_box_seg8_collision_08024C28.col │ ├── metal_door_geo.bin │ ├── mr_i_iris_geo.bin │ ├── palm_tree_geo.bin │ ├── pokey_body_part_geo.bin │ ├── pokey_head_geo.bin │ ├── snow_tree_geo.bin │ ├── spiky_tree1_geo.bin │ ├── spiky_tree_geo.bin │ ├── thwomp_seg5_collision_0500B7D0.col │ ├── thwomp_seg5_collision_0500B92C.col │ ├── vcutm_light_geo.bin │ ├── wiggler_body_geo.bin │ ├── wiggler_head_geo.bin │ ├── wooden_door2_geo.bin │ ├── wooden_door_geo.bin │ └── yoshi_egg_geo.bin │ ├── bhv_dupes.lua │ ├── bhv_overrides.lua │ ├── course.lua │ ├── data │ ├── bhvSMSR30StarDoorWall.bhv │ ├── bhvSMSRAngrySun.bhv │ ├── bhvSMSRAttractedSpaceBox.bhv │ ├── bhvSMSRBigBully.bhv │ ├── bhvSMSRBigChillBully.bhv │ ├── bhvSMSRBigLeaves.bhv │ ├── bhvSMSRBoatOnTrack.bhv │ ├── bhvSMSRBreakableFloor.bhv │ ├── bhvSMSRBreakableRock.bhv │ ├── bhvSMSRBreakableWindow.bhv │ ├── bhvSMSRBulletMine.bhv │ ├── bhvSMSRChainChomp.bhv │ ├── bhvSMSRDrumStick.bhv │ ├── bhvSMSRFallingDomino.bhv │ ├── bhvSMSRFloatingThwomp.bhv │ ├── bhvSMSRHiddenStar.bhv │ ├── bhvSMSRHiddenStarTrigger.bhv │ ├── bhvSMSRInvisibleCannon.bhv │ ├── bhvSMSRLampPath.bhv │ ├── bhvSMSRLavaLift.bhv │ ├── bhvSMSRLightsOnSwitch.bhv │ ├── bhvSMSRLilyPad.bhv │ ├── bhvSMSRMipsMessage.bhv │ ├── bhvSMSRMovingMushroom.bhv │ ├── bhvSMSRPeachMessage.bhv │ ├── bhvSMSRPiranhaPlantWild.bhv │ ├── bhvSMSRPlatformLift.bhv │ ├── bhvSMSRPushableTomb.bhv │ ├── bhvSMSRRacingPenguin.bhv │ ├── bhvSMSRRecoveryBubbleWater.bhv │ ├── bhvSMSRRedOctagonalPlatform.bhv │ ├── bhvSMSRRedSinkingPlatform.bhv │ ├── bhvSMSRRedWavePlatform.bhv │ ├── bhvSMSRRisingLava.bhv │ ├── bhvSMSRRisingTallPlatform.bhv │ ├── bhvSMSRRotatingDonutPlatform.bhv │ ├── bhvSMSRRotatingLavaPlatform.bhv │ ├── bhvSMSRRotatingWoodenGear.bhv │ ├── bhvSMSRShyGuy.bhv │ ├── bhvSMSRSinkingDonut.bhv │ ├── bhvSMSRSinkingPlatform.bhv │ ├── bhvSMSRSmallBee.bhv │ ├── bhvSMSRSmallSwingPlatform.bhv │ ├── bhvSMSRSpaceBox.bhv │ ├── bhvSMSRSpaceOctagonPlatform.bhv │ ├── bhvSMSRSpaceRedPlatform.bhv │ ├── bhvSMSRSpecialBreakeableBox.bhv │ ├── bhvSMSRStarDoor.bhv │ ├── bhvSMSRStarMoving.bhv │ ├── bhvSMSRStarReplica.bhv │ ├── bhvSMSRStaticMessage.bhv │ ├── bhvSMSRStoneCubePlatform.bhv │ ├── bhvSMSRTambourine.bhv │ ├── bhvSMSRThwomp2.bhv │ ├── bhvSMSRTiltingPyramid.bhv │ ├── bhvSMSRToxicWastePlatform.bhv │ ├── bhvSMSRWigglerHead.bhv │ ├── bhvSMSRWindTurbine.bhv │ ├── bhvSMSRWoodenOctagonalPlatform.bhv │ ├── bhvSMSRYoshi.bhv │ ├── bhvSMSRYoshiCoin.bhv │ └── bhvSMSRYoshiMessage.bhv │ ├── dialog.lua │ ├── hardcoded.lua │ ├── hardmode.lua │ ├── helpers.lua │ ├── levels │ ├── level_bbh_entry.lvl │ ├── level_bitdw_entry.lvl │ ├── level_bitfs_entry.lvl │ ├── level_bits_entry.lvl │ ├── level_bob_entry.lvl │ ├── level_bowser_1_entry.lvl │ ├── level_bowser_2_entry.lvl │ ├── level_bowser_3_entry.lvl │ ├── level_castle_courtyard_entry.lvl │ ├── level_castle_grounds_entry.lvl │ ├── level_castle_inside_entry.lvl │ ├── level_ccm_entry.lvl │ ├── level_cotmc_entry.lvl │ ├── level_ddd_entry.lvl │ ├── level_ending_entry.lvl │ ├── level_hmc_entry.lvl │ ├── level_jrb_entry.lvl │ ├── level_lll_entry.lvl │ ├── level_pss_entry.lvl │ ├── level_rr_entry.lvl │ ├── level_sa_entry.lvl │ ├── level_sl_entry.lvl │ ├── level_ssl_entry.lvl │ ├── level_thi_entry.lvl │ ├── level_totwc_entry.lvl │ ├── level_ttc_entry.lvl │ ├── level_ttm_entry.lvl │ ├── level_vcutm_entry.lvl │ ├── level_wdw_entry.lvl │ ├── level_wf_entry.lvl │ ├── level_wmotr_entry.lvl │ └── level_zerolife_entry.lvl │ ├── main.lua │ ├── sound │ ├── 02_Seq_smsrdeluxe_custom.m64 │ ├── 03_Seq_smsrdeluxe_custom.m64 │ ├── 04_Seq_smsrdeluxe_custom.m64 │ ├── 05_Seq_smsrdeluxe_custom.m64 │ ├── 06_Seq_smsrdeluxe_custom.m64 │ ├── 07_Seq_smsrdeluxe_custom.m64 │ ├── 08_Seq_smsrdeluxe_custom.m64 │ ├── 09_Seq_smsrdeluxe_custom.m64 │ ├── 0B_Seq_smsrdeluxe_custom.m64 │ ├── 0C_Seq_smsrdeluxe_custom.m64 │ ├── 0D_Seq_smsrdeluxe_custom.m64 │ ├── 0E_Seq_smsrdeluxe_custom.m64 │ ├── 0F_Seq_smsrdeluxe_custom.m64 │ ├── 10_Seq_smsrdeluxe_custom.m64 │ ├── 11_Seq_smsrdeluxe_custom.m64 │ ├── 12_Seq_smsrdeluxe_custom.m64 │ ├── 13_Seq_smsrdeluxe_custom.m64 │ ├── 14_Seq_smsrdeluxe_custom.m64 │ ├── 15_Seq_smsrdeluxe_custom.m64 │ ├── 16_Seq_smsrdeluxe_custom.m64 │ ├── 17_Seq_smsrdeluxe_custom.m64 │ ├── 18_Seq_smsrdeluxe_custom.m64 │ ├── 19_Seq_smsrdeluxe_custom.m64 │ ├── 1A_Seq_smsrdeluxe_custom.m64 │ ├── 1B_Seq_smsrdeluxe_custom.m64 │ ├── 1C_Seq_smsrdeluxe_custom.m64 │ ├── 1D_Seq_smsrdeluxe_custom.m64 │ ├── 1E_Seq_smsrdeluxe_custom.m64 │ ├── 1F_Seq_smsrdeluxe_custom.m64 │ ├── 20_Seq_smsrdeluxe_custom.m64 │ ├── 21_Seq_smsrdeluxe_custom.m64 │ ├── 22_Seq_smsrdeluxe_custom.m64 │ ├── 23_Seq_smsrdeluxe_custom.m64 │ ├── 24_Seq_smsrdeluxe_custom.m64 │ ├── 25_Seq_smsrdeluxe_custom.m64 │ ├── 26_Seq_smsrdeluxe_custom.m64 │ ├── 27_Seq_smsrdeluxe_custom.m64 │ ├── 28_Seq_smsrdeluxe_custom.m64 │ ├── 29_Seq_smsrdeluxe_custom.m64 │ ├── 2A_Seq_smsrdeluxe_custom.m64 │ ├── 2B_Seq_smsrdeluxe_custom.m64 │ ├── 2C_Seq_smsrdeluxe_custom.m64 │ ├── 2D_Seq_smsrdeluxe_custom.m64 │ ├── 2E_Seq_smsrdeluxe_custom.m64 │ ├── 2F_Seq_smsrdeluxe_custom.m64 │ ├── 30_Seq_smsrdeluxe_custom.m64 │ ├── 31_Seq_smsrdeluxe_custom.m64 │ └── 32_Seq_smsrdeluxe_custom.m64 │ └── textures │ ├── bowser_3_seg7_texture_07000000.tex │ ├── bowser_3_seg7_texture_07000800.tex │ ├── bowser_3_seg7_texture_07001000.tex │ ├── fire_09002000.tex │ ├── fire_09007800.tex │ ├── fire_0900B000.tex │ ├── generic_09000800.tex │ ├── generic_09002000.tex │ ├── generic_09006000.tex │ ├── generic_0900A800.tex │ ├── grass_09008000.tex │ ├── hmc_seg7_texture_07003000.tex │ ├── hmc_seg7_texture_07004000.tex │ ├── hmc_seg7_texture_07004800.tex │ ├── lll_seg7_texture_07005800.tex │ ├── mountain_09002800.tex │ ├── mountain_09003000.tex │ ├── mountain_09004000.tex │ ├── mountain_09004800.tex │ ├── mountain_09009800.tex │ ├── mountain_0900B000.tex │ ├── outside_09005800.tex │ ├── sky_09000000.tex │ ├── sky_09001800.tex │ ├── sky_09005800.tex │ ├── sky_09007000.tex │ ├── spooky_09000000.tex │ ├── spooky_09000800.tex │ ├── spooky_09004800.tex │ ├── spooky_09006000.tex │ ├── spooky_09006800.tex │ ├── ssl_seg7_texture_07002800.tex │ ├── ssl_seg7_texture_07003800.tex │ ├── ssl_seg7_texture_0700BFA8.tex │ ├── ssl_seg7_texture_0700C7A8.tex │ ├── ssl_seg7_texture_0700D7A8.tex │ ├── ssl_seg7_texture_0700E7A8.tex │ ├── water_09000000.tex │ ├── water_0900A800.tex │ ├── wiggler_seg5_texture_05005A30.tex │ ├── wiggler_seg5_texture_05006A30.tex │ ├── wiggler_seg5_texture_05007A30.tex │ ├── wiggler_seg5_texture_05008230.tex │ ├── wiggler_seg5_texture_05008A30.tex │ ├── wiggler_seg5_texture_05009230.tex │ └── wiggler_seg5_texture_0500A230.tex ├── palettes ├── Luigi.ini ├── Mario.ini ├── Toad.ini ├── Waluigi.ini └── Wario.ini ├── platform ├── .idea │ ├── .gitignore │ ├── caches │ │ └── deviceStreaming.xml │ ├── compiler.xml │ ├── deploymentTargetSelector.xml │ ├── gradle.xml │ ├── migrations.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── Dockerfile ├── android │ ├── app │ │ ├── AndroidManifest.xml │ │ ├── META-INF │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── build │ │ │ │ └── gradle │ │ │ │ └── app-metadata.properties │ │ ├── classes.dex │ │ ├── res │ │ │ ├── 0K.xml │ │ │ ├── 8c.png │ │ │ ├── 9w.png │ │ │ ├── BW.xml │ │ │ ├── Em.png │ │ │ ├── FS.png │ │ │ ├── Gc.png │ │ │ ├── Jp.png │ │ │ ├── Lf.png │ │ │ ├── QZ.png │ │ │ ├── RJ.png │ │ │ ├── as.png │ │ │ ├── fO.png │ │ │ ├── o-.png │ │ │ ├── wb.png │ │ │ ├── yn.png │ │ │ └── zR.png │ │ └── resources.arsc │ ├── certificate.pem │ └── key.pk8 ├── app │ ├── build.gradle │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── CMakeLists.txt │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ ├── com │ │ │ └── maniscat2 │ │ │ │ └── sm64coopdx │ │ │ │ └── sm64coopdxActivity.java │ │ └── org │ │ │ └── libsdl │ │ │ └── app │ │ │ ├── HIDDevice.java │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ ├── HIDDeviceManager.java │ │ │ ├── HIDDeviceUSB.java │ │ │ ├── SDL.java │ │ │ ├── SDLActivity.java │ │ │ ├── SDLAudioManager.java │ │ │ ├── SDLControllerManager.java │ │ │ └── SDLSurface.java │ │ └── res │ │ ├── drawable │ │ └── ic_banner.png │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── res ├── icon.icns ├── icon.ico └── icon.rc ├── sm64.eu.sha1 ├── sm64.jp.sha1 ├── sm64.sh.sha1 ├── sm64.us.sha1 ├── sound ├── README.md ├── bank_sets_compressed ├── samples │ ├── sfx_custom_luigi │ │ ├── 00_luigi_jump_hoo.aiff │ │ ├── 01_luigi_jump_wah.aiff │ │ ├── 02_luigi_yah.aiff │ │ ├── 03_luigi_haha.aiff │ │ ├── 04_luigi_yahoo.aiff │ │ ├── 05_luigi_uh.aiff │ │ ├── 06_luigi_hrmm.aiff │ │ ├── 07_luigi_wah2.aiff │ │ ├── 08_luigi_whoa.aiff │ │ ├── 09_luigi_eeuh.aiff │ │ ├── 0A_luigi_attacked.aiff │ │ ├── 0B_luigi_ooof.aiff │ │ ├── 0C_luigi_here_we_go.aiff │ │ ├── 0D_luigi_yawning.aiff │ │ ├── 0E_luigi_snoring1.aiff │ │ ├── 0F_luigi_snoring2.aiff │ │ ├── 10_luigi_doh.aiff │ │ ├── 11_luigi_game_over.aiff │ │ ├── 12_luigi_hello.aiff │ │ ├── 13_luigi_press_start_to_play.aiff │ │ ├── 14_luigi_twirl_bounce.aiff │ │ ├── 15_luigi_snoring3.aiff │ │ ├── 16_luigi_so_longa_bowser.aiff │ │ ├── 17_luigi_ima_tired.aiff │ │ ├── 18_luigi_waha.aiff │ │ ├── 19_luigi_yippee.aiff │ │ └── 1A_luigi_lets_a_go.aiff │ ├── sfx_custom_luigi_peach │ │ ├── 00_luigi_waaaooow.aiff │ │ ├── 01_luigi_hoohoo.aiff │ │ ├── 02_luigi_panting.aiff │ │ ├── 03_luigi_dying.aiff │ │ ├── 04_luigi_on_fire.aiff │ │ ├── 05_luigi_uh2.aiff │ │ ├── 06_luigi_coughing.aiff │ │ ├── 07_luigi_its_a_me_mario.aiff │ │ ├── 08_luigi_punch_yah.aiff │ │ ├── 09_luigi_punch_hoo.aiff │ │ ├── 0A_luigi_mama_mia.aiff │ │ ├── 0B_luigi_okey_dokey.aiff │ │ ├── 0C_luigi_drowning.aiff │ │ └── 0D_luigi_thank_you_playing_my_game.aiff │ ├── sfx_custom_toad │ │ ├── 00_toad_jump_hoo.aiff │ │ ├── 01_toad_jump_wah.aiff │ │ ├── 02_toad_yah.aiff │ │ ├── 03_toad_haha.aiff │ │ ├── 04_toad_yahoo.aiff │ │ ├── 05_toad_uh.aiff │ │ ├── 06_toad_hrmm.aiff │ │ ├── 07_toad_wah2.aiff │ │ ├── 08_toad_whoa.aiff │ │ ├── 09_toad_eeuh.aiff │ │ ├── 0A_toad_attacked.aiff │ │ ├── 0B_toad_ooof.aiff │ │ ├── 0C_toad_here_we_go.aiff │ │ ├── 0D_toad_yawning.aiff │ │ ├── 0E_toad_snoring1.aiff │ │ ├── 0F_toad_snoring2.aiff │ │ ├── 10_toad_doh.aiff │ │ ├── 11_toad_game_over.aiff │ │ ├── 12_toad_hello.aiff │ │ ├── 13_toad_press_start_to_play.aiff │ │ ├── 14_toad_twirl_bounce.aiff │ │ ├── 15_toad_snoring3.aiff │ │ ├── 16_toad_so_longa_bowser.aiff │ │ ├── 17_toad_ima_tired.aiff │ │ ├── 18_toad_waha.aiff │ │ ├── 19_toad_yippee.aiff │ │ └── 1A_toad_lets_a_go.aiff │ ├── sfx_custom_toad_peach │ │ ├── 00_toad_waaaooow.aiff │ │ ├── 01_toad_hoohoo.aiff │ │ ├── 02_toad_panting.aiff │ │ ├── 03_toad_dying.aiff │ │ ├── 04_toad_on_fire.aiff │ │ ├── 05_toad_uh2.aiff │ │ ├── 06_toad_coughing.aiff │ │ ├── 07_toad_its_a_me_mario.aiff │ │ ├── 08_toad_punch_yah.aiff │ │ ├── 09_toad_punch_hoo.aiff │ │ ├── 0A_toad_mama_mia.aiff │ │ ├── 0B_toad_okey_dokey.aiff │ │ ├── 0C_toad_drowning.aiff │ │ └── 0D_toad_thank_you_playing_my_game.aiff │ ├── sfx_custom_wario │ │ ├── 00_wario_jump_hoo.aiff │ │ ├── 01_wario_jump_wah.aiff │ │ ├── 02_wario_yah.aiff │ │ ├── 03_wario_haha.aiff │ │ ├── 04_wario_yahoo.aiff │ │ ├── 05_wario_uh.aiff │ │ ├── 06_wario_hrmm.aiff │ │ ├── 07_wario_wah2.aiff │ │ ├── 08_wario_whoa.aiff │ │ ├── 09_wario_eeuh.aiff │ │ ├── 0A_wario_attacked.aiff │ │ ├── 0B_wario_ooof.aiff │ │ ├── 0C_wario_here_we_go.aiff │ │ ├── 0D_wario_yawning.aiff │ │ ├── 0E_wario_snoring1.aiff │ │ ├── 0F_wario_snoring2.aiff │ │ ├── 10_wario_doh.aiff │ │ ├── 11_wario_game_over.aiff │ │ ├── 12_wario_hello.aiff │ │ ├── 13_wario_press_start_to_play.aiff │ │ ├── 14_wario_twirl_bounce.aiff │ │ ├── 15_wario_snoring3.aiff │ │ ├── 16_wario_so_longa_bowser.aiff │ │ ├── 17_wario_ima_tired.aiff │ │ ├── 18_wario_waha.aiff │ │ ├── 19_wario_yippee.aiff │ │ └── 1A_wario_lets_a_go.aiff │ └── sfx_custom_wario_peach │ │ ├── 00_wario_waaaooow.aiff │ │ ├── 01_wario_hoohoo.aiff │ │ ├── 02_wario_panting.aiff │ │ ├── 03_wario_dying.aiff │ │ ├── 04_wario_on_fire.aiff │ │ ├── 05_wario_uh2.aiff │ │ ├── 06_wario_coughing.aiff │ │ ├── 07_wario_its_a_me_mario.aiff │ │ ├── 08_wario_punch_yah.aiff │ │ ├── 09_wario_punch_hoo.aiff │ │ ├── 0A_wario_mama_mia.aiff │ │ ├── 0B_wario_okey_dokey.aiff │ │ ├── 0C_wario_drowning.aiff │ │ └── 0D_wario_thank_you_playing_my_game.aiff ├── samples_assets.c ├── samples_offsets.h ├── sequences.json ├── sequences │ └── 00_sound_player.s ├── sequences_assets.c ├── sequences_compressed.bin ├── sequences_offsets.h ├── sound_banks │ ├── 00.json │ ├── 01_terrain.json │ ├── 02_water.json │ ├── 03.json │ ├── 04.json │ ├── 05.json │ ├── 06.json │ ├── 07.json │ ├── 08_mario.json │ ├── 09.json │ ├── 0A_mario_peach.json │ ├── 0B.json │ ├── 0C.json │ ├── 0D.json │ ├── 0E.json │ ├── 0F.json │ ├── 10.json │ ├── 11.json │ ├── 12.json │ ├── 13.json │ ├── 14_piranha_music_box.json │ ├── 15.json │ ├── 16_course_start.json │ ├── 17.json │ ├── 18.json │ ├── 19.json │ ├── 1A.json │ ├── 1B.json │ ├── 1C_endless_stairs.json │ ├── 1D_bowser_organ.json │ ├── 1E.json │ ├── 1F.json │ ├── 20.json │ ├── 21.json │ ├── 22.json │ ├── 23.json │ ├── 24.json │ ├── 25.json │ ├── 26_custom_luigi.json │ ├── 27_custom_luigi_peach.json │ ├── 28_custom_wario.json │ ├── 29_custom_wario_peach.json │ ├── 30_extended.json │ ├── 31_custom_toad.json │ └── 32_custom_toad_peach.json ├── sound_data.c ├── sound_data.h ├── sound_data_compressed.ctl └── sound_data_compressed.tbl ├── src ├── audio │ ├── audio_session_presets_sh.c │ ├── copt │ │ └── seq_channel_layer_process_script_copt.inc.c │ ├── data.c │ ├── data.h │ ├── effects.c │ ├── effects.h │ ├── external.c │ ├── external.h │ ├── globals_start.c │ ├── heap.c │ ├── heap.h │ ├── internal.h │ ├── load.c │ ├── load.h │ ├── playback.c │ ├── playback.h │ ├── port_eu.c │ ├── seqplayer.c │ ├── seqplayer.h │ ├── shindou_debug_prints.c │ ├── synthesis.c │ ├── synthesis.h │ └── unk_shindou_audio_file.c ├── buffers │ ├── buffers.c │ ├── buffers.h │ ├── framebuffers.c │ ├── framebuffers.h │ ├── gfx_output_buffer.c │ ├── gfx_output_buffer.h │ ├── zbuffer.c │ └── zbuffer.h ├── engine │ ├── behavior_script.c │ ├── behavior_script.h │ ├── extended_bounds.h │ ├── geo_layout.c │ ├── geo_layout.h │ ├── graph_node.c │ ├── graph_node.h │ ├── graph_node_manager.c │ ├── level_script.c │ ├── level_script.h │ ├── lighting_engine.c │ ├── lighting_engine.h │ ├── math_util.c │ ├── math_util.h │ ├── math_util.inl │ ├── math_util_mat4.inl │ ├── math_util_vec2.tmpl │ ├── math_util_vec2f.inl │ ├── math_util_vec2i.inl │ ├── math_util_vec2s.inl │ ├── math_util_vec3.tmpl │ ├── math_util_vec3f.inl │ ├── math_util_vec3i.inl │ ├── math_util_vec3s.inl │ ├── surface_collision.c │ ├── surface_collision.h │ ├── surface_load.c │ └── surface_load.h ├── game │ ├── area.c │ ├── area.h │ ├── behavior_actions.c │ ├── behavior_actions.h │ ├── behaviors │ │ ├── activated_bf_plat.inc.c │ │ ├── amp.inc.c │ │ ├── animated_floor_switch.inc.c │ │ ├── arrow_lift.inc.c │ │ ├── bbh_haunted_bookshelf.inc.c │ │ ├── bbh_merry_go_round.inc.c │ │ ├── bbh_tilting_trap.inc.c │ │ ├── beta_boo_key.inc.c │ │ ├── beta_bowser_anchor.inc.c │ │ ├── beta_chest.inc.c │ │ ├── beta_fish_splash_spawner.inc.c │ │ ├── beta_holdable_object.inc.c │ │ ├── beta_trampoline.inc.c │ │ ├── bird.inc.c │ │ ├── blue_coin.inc.c │ │ ├── blue_fish.inc.c │ │ ├── bobomb.inc.c │ │ ├── bomp.inc.c │ │ ├── boo.inc.c │ │ ├── boo_cage.inc.c │ │ ├── boulder.inc.c │ │ ├── bouncing_fireball.inc.c │ │ ├── bowling_ball.inc.c │ │ ├── bowser.inc.c │ │ ├── bowser_bomb.inc.c │ │ ├── bowser_key.inc.c │ │ ├── bowser_key_cutscene.inc.c │ │ ├── bowser_puzzle_piece.inc.c │ │ ├── break_particles.inc.c │ │ ├── breakable_box.inc.c │ │ ├── breakable_box_small.inc.c │ │ ├── breakable_wall.inc.c │ │ ├── bub.inc.c │ │ ├── bubba.inc.c │ │ ├── bubble.inc.c │ │ ├── bullet_bill.inc.c │ │ ├── bully.inc.c │ │ ├── butterfly.inc.c │ │ ├── camera_lakitu.inc.c │ │ ├── cannon.inc.c │ │ ├── cannon_door.inc.c │ │ ├── cap.inc.c │ │ ├── capswitch.inc.c │ │ ├── castle_cannon_grate.inc.c │ │ ├── castle_flag.inc.c │ │ ├── castle_floor_trap.inc.c │ │ ├── celebration_star.inc.c │ │ ├── chain_chomp.inc.c │ │ ├── checkerboard_platform.inc.c │ │ ├── chuckya.inc.c │ │ ├── clam.inc.c │ │ ├── clock_arm.inc.c │ │ ├── cloud.inc.c │ │ ├── coffin.inc.c │ │ ├── coin.inc.c │ │ ├── collide_particles.inc.c │ │ ├── controllable_platform.inc.c │ │ ├── corkbox.inc.c │ │ ├── cruiser.inc.c │ │ ├── ddd_pole.inc.c │ │ ├── ddd_sub.inc.c │ │ ├── ddd_warp.inc.c │ │ ├── decorative_pendulum.inc.c │ │ ├── donut_platform.inc.c │ │ ├── door.inc.c │ │ ├── dorrie.inc.c │ │ ├── drawbridge.inc.c │ │ ├── elevator.inc.c │ │ ├── end_birds_1.inc.c │ │ ├── end_birds_2.inc.c │ │ ├── enemy_lakitu.inc.c │ │ ├── exclamation_box.inc.c │ │ ├── explosion.inc.c │ │ ├── express_elevator.inc.c │ │ ├── eyerok.inc.c │ │ ├── falling_pillar.inc.c │ │ ├── falling_rising_platform.inc.c │ │ ├── ferris_wheel.inc.c │ │ ├── fire_piranha_plant.inc.c │ │ ├── fire_spitter.inc.c │ │ ├── fish.inc.c │ │ ├── fishing_boo.inc.c │ │ ├── flame.inc.c │ │ ├── flame_mario.inc.c │ │ ├── flamethrower.inc.c │ │ ├── floating_box.inc.c │ │ ├── floating_platform.inc.c │ │ ├── fly_guy.inc.c │ │ ├── flying_bookend_switch.inc.c │ │ ├── goomba.inc.c │ │ ├── grand_star.inc.c │ │ ├── grill_door.inc.c │ │ ├── ground_particles.inc.c │ │ ├── haunted_chair.inc.c │ │ ├── heave_ho.inc.c │ │ ├── hidden_star.inc.c │ │ ├── hoot.inc.c │ │ ├── horizontal_grindel.inc.c │ │ ├── intro_lakitu.inc.c │ │ ├── intro_peach.inc.c │ │ ├── intro_scene.inc.c │ │ ├── jrb_ship.inc.c │ │ ├── jumping_box.inc.c │ │ ├── kickable_board.inc.c │ │ ├── king_bobomb.inc.c │ │ ├── klepto.inc.c │ │ ├── koopa.inc.c │ │ ├── koopa_shell.inc.c │ │ ├── koopa_shell_underwater.inc.c │ │ ├── light.inc.c │ │ ├── lll_floating_wood_piece.inc.c │ │ ├── lll_hexagonal_ring.inc.c │ │ ├── lll_octagonal_rotating_mesh.inc.c │ │ ├── lll_rotating_hex_flame.inc.c │ │ ├── lll_sinking_rectangle.inc.c │ │ ├── lll_sinking_rock_block.inc.c │ │ ├── lll_volcano_flames.inc.c │ │ ├── mad_piano.inc.c │ │ ├── manta_ray.inc.c │ │ ├── metal_box.inc.c │ │ ├── mips.inc.c │ │ ├── moat_drainer.inc.c │ │ ├── moat_grill.inc.c │ │ ├── moneybag.inc.c │ │ ├── monty_mole.inc.c │ │ ├── moving_coin.inc.c │ │ ├── mr_blizzard.inc.c │ │ ├── mr_i.inc.c │ │ ├── mushroom_1up.inc.c │ │ ├── music_touch.inc.c │ │ ├── orange_number.inc.c │ │ ├── piranha_bubbles.inc.c │ │ ├── piranha_plant.inc.c │ │ ├── platform_on_track.inc.c │ │ ├── pokey.inc.c │ │ ├── pole.inc.c │ │ ├── pole_base.inc.c │ │ ├── purple_switch.inc.c │ │ ├── pyramid_elevator.inc.c │ │ ├── pyramid_top.inc.c │ │ ├── pyramid_wall.inc.c │ │ ├── racing_penguin.inc.c │ │ ├── recovery_heart.inc.c │ │ ├── red_coin.inc.c │ │ ├── reds_star_marker.inc.c │ │ ├── rolling_log.inc.c │ │ ├── rotating_octagonal_plat.inc.c │ │ ├── rotating_platform.inc.c │ │ ├── scuttlebug.inc.c │ │ ├── seaweed.inc.c │ │ ├── seesaw_platform.inc.c │ │ ├── shock_wave.inc.c │ │ ├── skeeter.inc.c │ │ ├── sl_snowman_wind.inc.c │ │ ├── sl_walking_penguin.inc.c │ │ ├── sliding_platform.inc.c │ │ ├── sliding_platform_2.inc.c │ │ ├── snow_mound.inc.c │ │ ├── snowman.inc.c │ │ ├── snufit.inc.c │ │ ├── sound_ambient.inc.c │ │ ├── sound_birds.inc.c │ │ ├── sound_sand.inc.c │ │ ├── sound_spawner.inc.c │ │ ├── sound_volcano.inc.c │ │ ├── sound_waterfall.inc.c │ │ ├── sparkle_spawn.inc.c │ │ ├── sparkle_spawn_star.inc.c │ │ ├── spawn_star.inc.c │ │ ├── spawn_star_exit.inc.c │ │ ├── spindel.inc.c │ │ ├── spindrift.inc.c │ │ ├── spiny.inc.c │ │ ├── square_platform_cycle.inc.c │ │ ├── star_door.inc.c │ │ ├── static_checkered_platform.inc.c │ │ ├── strong_wind_particle.inc.c │ │ ├── sushi.inc.c │ │ ├── swing_platform.inc.c │ │ ├── switch_hidden_objects.inc.c │ │ ├── swoop.inc.c │ │ ├── texscroll.inc.c │ │ ├── thi_top.inc.c │ │ ├── thwomp.inc.c │ │ ├── tilting_inverted_pyramid.inc.c │ │ ├── tower_door.inc.c │ │ ├── tower_platform.inc.c │ │ ├── tox_box.inc.c │ │ ├── treasure_chest.inc.c │ │ ├── tree_particles.inc.c │ │ ├── triplet_butterfly.inc.c │ │ ├── ttc_2d_rotator.inc.c │ │ ├── ttc_cog.inc.c │ │ ├── ttc_elevator.inc.c │ │ ├── ttc_moving_bar.inc.c │ │ ├── ttc_pendulum.inc.c │ │ ├── ttc_pit_block.inc.c │ │ ├── ttc_rotating_solid.inc.c │ │ ├── ttc_spinner.inc.c │ │ ├── ttc_treadmill.inc.c │ │ ├── tumbling_bridge.inc.c │ │ ├── tuxie.inc.c │ │ ├── tweester.inc.c │ │ ├── ukiki.inc.c │ │ ├── ukiki_cage.inc.c │ │ ├── unagi.inc.c │ │ ├── unused_particle_spawn.inc.c │ │ ├── unused_poundable_platform.inc.c │ │ ├── warp.inc.c │ │ ├── water_bomb.inc.c │ │ ├── water_bomb_cannon.inc.c │ │ ├── water_mist.inc.c │ │ ├── water_mist_particle.inc.c │ │ ├── water_objs.inc.c │ │ ├── water_pillar.inc.c │ │ ├── water_ring.inc.c │ │ ├── water_splashes_and_waves.inc.c │ │ ├── water_wave.inc.c │ │ ├── wdw_water_level.inc.c │ │ ├── whirlpool.inc.c │ │ ├── white_puff.inc.c │ │ ├── white_puff_explode.inc.c │ │ ├── whomp.inc.c │ │ ├── wiggler.inc.c │ │ ├── wind.inc.c │ │ └── yoshi.inc.c │ ├── bettercamera.h │ ├── bettercamera.inc.h │ ├── camera.c │ ├── camera.h │ ├── characters.c │ ├── characters.h │ ├── debug.c │ ├── debug.h │ ├── debug_course.c │ ├── debug_course.h │ ├── decompress.h │ ├── display.h │ ├── envfx_bubbles.c │ ├── envfx_bubbles.h │ ├── envfx_snow.c │ ├── envfx_snow.h │ ├── first_person_cam.c │ ├── first_person_cam.h │ ├── game_init.c │ ├── game_init.h │ ├── geo_misc.c │ ├── geo_misc.h │ ├── hardcoded.c │ ├── hardcoded.h │ ├── hud.c │ ├── hud.h │ ├── ingame_menu.c │ ├── ingame_menu.h │ ├── interaction.c │ ├── interaction.h │ ├── level_geo.c │ ├── level_geo.h │ ├── level_info.c │ ├── level_info.h │ ├── level_update.c │ ├── level_update.h │ ├── macro_presets.c │ ├── macro_special_objects.c │ ├── macro_special_objects.h │ ├── main.c │ ├── main.h │ ├── mario.c │ ├── mario.h │ ├── mario_actions_airborne.c │ ├── mario_actions_airborne.h │ ├── mario_actions_automatic.c │ ├── mario_actions_automatic.h │ ├── mario_actions_cutscene.c │ ├── mario_actions_cutscene.h │ ├── mario_actions_moving.c │ ├── mario_actions_moving.h │ ├── mario_actions_object.c │ ├── mario_actions_object.h │ ├── mario_actions_stationary.c │ ├── mario_actions_stationary.h │ ├── mario_actions_submerged.c │ ├── mario_actions_submerged.h │ ├── mario_misc.c │ ├── mario_misc.h │ ├── mario_step.c │ ├── mario_step.h │ ├── memory.c │ ├── memory.h │ ├── moving_texture.c │ ├── moving_texture.h │ ├── obj_behaviors.c │ ├── obj_behaviors.h │ ├── obj_behaviors_2.c │ ├── obj_behaviors_2.h │ ├── object_collision.c │ ├── object_collision.h │ ├── object_helpers.c │ ├── object_helpers.h │ ├── object_list_processor.c │ ├── object_list_processor.h │ ├── paintings.c │ ├── paintings.h │ ├── platform_displacement.c │ ├── platform_displacement.h │ ├── player_palette.c │ ├── player_palette.h │ ├── print.c │ ├── print.h │ ├── profiler.c │ ├── profiler.h │ ├── rendering_graph_node.c │ ├── rendering_graph_node.h │ ├── rng_position.c │ ├── rng_position.h │ ├── rumble_init.c │ ├── rumble_init.h │ ├── save_file.c │ ├── save_file.h │ ├── screen_transition.c │ ├── screen_transition.h │ ├── scroll_targets.c │ ├── scroll_targets.h │ ├── segment2.h │ ├── segment7.h │ ├── shadow.c │ ├── shadow.h │ ├── skybox.c │ ├── skybox.h │ ├── sound_init.c │ ├── sound_init.h │ ├── spawn_object.c │ ├── spawn_object.h │ ├── spawn_sound.c │ └── spawn_sound.h ├── goddard │ ├── bad_declarations.h │ ├── debug_utils.c │ ├── debug_utils.h │ ├── draw_objects.c │ ├── draw_objects.h │ ├── dynlist_proc.c │ ├── dynlist_proc.h │ ├── dynlists │ │ ├── anim_group_1.c │ │ ├── anim_group_2.c │ │ ├── anim_mario_eyebrows_1.c │ │ ├── anim_mario_lips_1.c │ │ ├── anim_mario_lips_2.c │ │ ├── anim_mario_mustache_left.c │ │ ├── anim_mario_mustache_right.c │ │ ├── animdata.h │ │ ├── dynlist_macros.h │ │ ├── dynlist_mario_face.c │ │ ├── dynlist_mario_master.c │ │ ├── dynlist_test_cube.c │ │ ├── dynlist_unused.c │ │ ├── dynlists.h │ │ ├── dynlists_mario_eyebrows_mustache.c │ │ └── dynlists_mario_eyes.c │ ├── gd_macros.h │ ├── gd_main.c │ ├── gd_main.h │ ├── gd_math.c │ ├── gd_math.h │ ├── gd_memory.c │ ├── gd_memory.h │ ├── gd_types.h │ ├── joints.c │ ├── joints.h │ ├── objects.c │ ├── objects.h │ ├── old_menu.c │ ├── old_menu.h │ ├── particles.c │ ├── particles.h │ ├── renderer.c │ ├── renderer.h │ ├── sfx.c │ ├── sfx.h │ ├── shape_helper.c │ ├── shape_helper.h │ ├── skin.c │ ├── skin.h │ ├── skin_movement.c │ └── skin_movement.h ├── menu │ ├── debug_level_select.h │ ├── file_select.c │ ├── file_select.h │ ├── ingame_text.c │ ├── ingame_text.h │ ├── intro_geo.c │ ├── intro_geo.h │ ├── level_select_menu.c │ ├── level_select_menu.h │ ├── star_select.c │ └── star_select.h └── pc │ ├── README-n64-fast32-engine.md │ ├── apparition.inc.c │ ├── audio │ ├── audio_api.h │ ├── audio_null.c │ ├── audio_null.h │ ├── audio_sdl.h │ ├── audio_sdl1.c │ └── audio_sdl2.c │ ├── chat_commands.c │ ├── chat_commands.h │ ├── cliopts.c │ ├── cliopts.h │ ├── configfile.c │ ├── configfile.h │ ├── controller │ ├── controller_api.h │ ├── controller_bind_mapping.c │ ├── controller_bind_mapping.h │ ├── controller_entry_point.c │ ├── controller_keyboard.c │ ├── controller_keyboard.h │ ├── controller_mouse.c │ ├── controller_mouse.h │ ├── controller_sdl.h │ ├── controller_sdl1.c │ ├── controller_sdl2.c │ ├── controller_touchscreen.c │ ├── controller_touchscreen.h │ ├── controller_touchscreen_layout.inc │ ├── controller_touchscreen_textures.c │ └── controller_touchscreen_textures.h │ ├── crash_handler.c │ ├── crash_handler.h │ ├── debug_context.c │ ├── debug_context.h │ ├── debuglog.h │ ├── dev │ ├── chat.c │ └── chat.h │ ├── dialog_table.c │ ├── dialog_table.h │ ├── discord │ ├── discord.c │ ├── discord.h │ ├── discord_activity.c │ └── discord_game_sdk.h │ ├── djui │ ├── djui.c │ ├── djui.h │ ├── djui_base.c │ ├── djui_base.h │ ├── djui_bind.c │ ├── djui_bind.h │ ├── djui_button.c │ ├── djui_button.h │ ├── djui_chat_box.c │ ├── djui_chat_box.h │ ├── djui_chat_message.c │ ├── djui_chat_message.h │ ├── djui_checkbox.c │ ├── djui_checkbox.h │ ├── djui_console.c │ ├── djui_console.h │ ├── djui_ctx_display.c │ ├── djui_ctx_display.h │ ├── djui_cursor.c │ ├── djui_cursor.h │ ├── djui_flow_layout.c │ ├── djui_flow_layout.h │ ├── djui_font.c │ ├── djui_font.h │ ├── djui_fps_display.c │ ├── djui_fps_display.h │ ├── djui_gfx.c │ ├── djui_gfx.h │ ├── djui_hud_utils.c │ ├── djui_hud_utils.h │ ├── djui_image.c │ ├── djui_image.h │ ├── djui_inputbox.c │ ├── djui_inputbox.h │ ├── djui_interactable.c │ ├── djui_interactable.h │ ├── djui_language.c │ ├── djui_language.h │ ├── djui_lobby_entry.c │ ├── djui_lobby_entry.h │ ├── djui_lua_profiler.c │ ├── djui_lua_profiler.h │ ├── djui_paginated.c │ ├── djui_paginated.h │ ├── djui_panel.c │ ├── djui_panel.h │ ├── djui_panel_camera.c │ ├── djui_panel_camera.h │ ├── djui_panel_confirm.c │ ├── djui_panel_confirm.h │ ├── djui_panel_controls.c │ ├── djui_panel_controls.h │ ├── djui_panel_controls_extra.c │ ├── djui_panel_controls_extra.h │ ├── djui_panel_controls_n64.c │ ├── djui_panel_controls_n64.h │ ├── djui_panel_debug.c │ ├── djui_panel_debug.h │ ├── djui_panel_display.c │ ├── djui_panel_display.h │ ├── djui_panel_dynos.c │ ├── djui_panel_dynos.h │ ├── djui_panel_host.c │ ├── djui_panel_host.h │ ├── djui_panel_host_message.c │ ├── djui_panel_host_message.h │ ├── djui_panel_host_mods.c │ ├── djui_panel_host_mods.h │ ├── djui_panel_host_save.c │ ├── djui_panel_host_save.h │ ├── djui_panel_host_settings.c │ ├── djui_panel_host_settings.h │ ├── djui_panel_info.c │ ├── djui_panel_info.h │ ├── djui_panel_join.c │ ├── djui_panel_join.h │ ├── djui_panel_join_direct.c │ ├── djui_panel_join_direct.h │ ├── djui_panel_join_lobbies.c │ ├── djui_panel_join_lobbies.h │ ├── djui_panel_join_message.c │ ├── djui_panel_join_message.h │ ├── djui_panel_join_private.c │ ├── djui_panel_join_private.h │ ├── djui_panel_language.c │ ├── djui_panel_language.h │ ├── djui_panel_main.c │ ├── djui_panel_main.h │ ├── djui_panel_menu.c │ ├── djui_panel_menu.h │ ├── djui_panel_menu_options.c │ ├── djui_panel_menu_options.h │ ├── djui_panel_misc.c │ ├── djui_panel_misc.h │ ├── djui_panel_mod_menu.c │ ├── djui_panel_mod_menu.h │ ├── djui_panel_modlist.c │ ├── djui_panel_modlist.h │ ├── djui_panel_options.c │ ├── djui_panel_options.h │ ├── djui_panel_pause.c │ ├── djui_panel_pause.h │ ├── djui_panel_player.c │ ├── djui_panel_player.h │ ├── djui_panel_playerlist.c │ ├── djui_panel_playerlist.h │ ├── djui_panel_rules.c │ ├── djui_panel_rules.h │ ├── djui_panel_sound.c │ ├── djui_panel_sound.h │ ├── djui_panel_touch_controls.c │ ├── djui_panel_touch_controls.h │ ├── djui_panel_touch_controls_editor.c │ ├── djui_panel_touch_controls_editor.h │ ├── djui_popup.c │ ├── djui_popup.h │ ├── djui_progress_bar.c │ ├── djui_progress_bar.h │ ├── djui_rect.c │ ├── djui_rect.h │ ├── djui_root.c │ ├── djui_root.h │ ├── djui_selectionbox.c │ ├── djui_selectionbox.h │ ├── djui_slider.c │ ├── djui_slider.h │ ├── djui_text.c │ ├── djui_text.h │ ├── djui_theme.c │ ├── djui_theme.h │ ├── djui_three_panel.c │ ├── djui_three_panel.h │ ├── djui_types.h │ ├── djui_unicode.c │ ├── djui_unicode.h │ └── jp_glyphs.h │ ├── fs │ ├── dirtree.c │ ├── dirtree.h │ ├── fmem.c │ ├── fmem.h │ ├── fs.c │ ├── fs.h │ └── fs_packtype_dir.c │ ├── gfx │ ├── gfx.h │ ├── gfx_cc.c │ ├── gfx_cc.h │ ├── gfx_direct3d11.cpp │ ├── gfx_direct3d11.h │ ├── gfx_direct3d_common.cpp │ ├── gfx_direct3d_common.h │ ├── gfx_dummy.c │ ├── gfx_dummy.h │ ├── gfx_dxgi.cpp │ ├── gfx_dxgi.h │ ├── gfx_opengl.c │ ├── gfx_opengl.h │ ├── gfx_opengl_legacy.c │ ├── gfx_pc.c │ ├── gfx_pc.h │ ├── gfx_rendering_api.h │ ├── gfx_screen_config.h │ ├── gfx_sdl.h │ ├── gfx_sdl1.c │ ├── gfx_sdl2.c │ └── gfx_window_manager_api.h │ ├── ini.c │ ├── ini.h │ ├── loading.c │ ├── loading.h │ ├── lua │ ├── smlua.c │ ├── smlua.h │ ├── smlua_autogen.h │ ├── smlua_cobject.c │ ├── smlua_cobject.h │ ├── smlua_cobject_autogen.c │ ├── smlua_cobject_autogen.h │ ├── smlua_constants_autogen.c │ ├── smlua_functions.c │ ├── smlua_functions.h │ ├── smlua_functions_autogen.c │ ├── smlua_functions_autogen.h │ ├── smlua_hook_events.inl │ ├── smlua_hook_events_autogen.inl │ ├── smlua_hooks.c │ ├── smlua_hooks.h │ ├── smlua_live_reload.c │ ├── smlua_live_reload.h │ ├── smlua_require.c │ ├── smlua_require.h │ ├── smlua_sync_table.c │ ├── smlua_sync_table.h │ ├── smlua_utils.c │ ├── smlua_utils.h │ └── utils │ │ ├── smlua_anim_utils.c │ │ ├── smlua_anim_utils.h │ │ ├── smlua_audio_utils.c │ │ ├── smlua_audio_utils.h │ │ ├── smlua_camera_utils.c │ │ ├── smlua_camera_utils.h │ │ ├── smlua_collision_utils.c │ │ ├── smlua_collision_utils.h │ │ ├── smlua_deprecated.c │ │ ├── smlua_deprecated.h │ │ ├── smlua_gfx_utils.c │ │ ├── smlua_gfx_utils.h │ │ ├── smlua_level_utils.c │ │ ├── smlua_level_utils.h │ │ ├── smlua_misc_utils.c │ │ ├── smlua_misc_utils.h │ │ ├── smlua_model_utils.c │ │ ├── smlua_model_utils.h │ │ ├── smlua_obj_utils.c │ │ ├── smlua_obj_utils.h │ │ ├── smlua_text_utils.c │ │ └── smlua_text_utils.h │ ├── mini.h │ ├── mixer.c │ ├── mixer.h │ ├── mods │ ├── mod.c │ ├── mod.h │ ├── mod_cache.c │ ├── mod_cache.h │ ├── mod_fs.cpp │ ├── mod_fs.h │ ├── mod_import.c │ ├── mod_import.h │ ├── mod_storage.cpp │ ├── mod_storage.h │ ├── mods.c │ ├── mods.h │ ├── mods_utils.c │ └── mods_utils.h │ ├── mumble │ ├── mumble.c │ └── mumble.h │ ├── nametags.c │ ├── nametags.h │ ├── network │ ├── ban_list.c │ ├── ban_list.h │ ├── coopnet │ │ ├── coopnet.c │ │ ├── coopnet.h │ │ ├── coopnet_id.c │ │ └── coopnet_id.h │ ├── lag_compensation.c │ ├── lag_compensation.h │ ├── moderator_list.c │ ├── moderator_list.h │ ├── network.c │ ├── network.h │ ├── network_player.c │ ├── network_player.h │ ├── network_utils.c │ ├── network_utils.h │ ├── packets │ │ ├── packet.c │ │ ├── packet.h │ │ ├── packet_area.c │ │ ├── packet_area_request.c │ │ ├── packet_change_area.c │ │ ├── packet_change_level.c │ │ ├── packet_change_water_level.c │ │ ├── packet_chat.c │ │ ├── packet_collect_coin.c │ │ ├── packet_collect_item.c │ │ ├── packet_collect_star.c │ │ ├── packet_command_mod.c │ │ ├── packet_custom.c │ │ ├── packet_death.c │ │ ├── packet_debug_sync.c │ │ ├── packet_download.c │ │ ├── packet_global_popup.c │ │ ├── packet_join.c │ │ ├── packet_keep_alive.c │ │ ├── packet_kick.c │ │ ├── packet_leaving.c │ │ ├── packet_level.c │ │ ├── packet_level_area_inform.c │ │ ├── packet_level_area_request.c │ │ ├── packet_level_macro.c │ │ ├── packet_level_request.c │ │ ├── packet_level_respawn_info.c │ │ ├── packet_level_spawn_info.c │ │ ├── packet_lua_custom.c │ │ ├── packet_lua_sync_table.c │ │ ├── packet_mod_list.c │ │ ├── packet_network_players.c │ │ ├── packet_object.c │ │ ├── packet_ordered.c │ │ ├── packet_ping.c │ │ ├── packet_player.c │ │ ├── packet_player_settings.c │ │ ├── packet_read_write.c │ │ ├── packet_reliable.c │ │ ├── packet_request_failed.c │ │ ├── packet_save_file.c │ │ ├── packet_save_remove_flag.c │ │ ├── packet_save_set_flag.c │ │ ├── packet_spawn_objects.c │ │ ├── packet_spawn_star.c │ │ └── packet_sync_valid.c │ ├── socket │ │ ├── socket.c │ │ ├── socket.h │ │ ├── socket_linux.c │ │ ├── socket_linux.h │ │ ├── socket_windows.c │ │ └── socket_windows.h │ ├── sync_object.c │ ├── sync_object.h │ ├── version.c │ └── version.h │ ├── pc_main.c │ ├── pc_main.h │ ├── platform.c │ ├── platform.h │ ├── queue.h │ ├── rom_assets.c │ ├── rom_assets.h │ ├── rom_checker.cpp │ ├── rom_checker.h │ ├── thread.c │ ├── thread.h │ ├── ultra_reimplementation.c │ ├── update_checker.c │ ├── update_checker.h │ └── utils │ ├── json.hpp │ ├── md5.c │ ├── md5.h │ ├── miniaudio.h │ ├── miniz │ ├── LICENSE │ ├── miniz.c │ └── miniz.h │ ├── misc.c │ ├── misc.h │ ├── stb_vorbis.c │ ├── string_builder.c │ ├── string_builder.h │ ├── string_linked_list.c │ └── string_linked_list.h ├── text ├── define_courses.inc.c ├── define_text.inc.c └── us │ ├── courses.h │ ├── courses_assets.inc.c │ ├── dialog_assets.inc.c │ └── dialogs.h ├── textures ├── custom_font │ ├── custom_font_aliased.rgba32.png │ ├── custom_font_hud.rgba32.png │ ├── custom_font_hud_recolor.rgba32.png │ ├── custom_font_jp.rgba32.png │ ├── custom_font_jp_aliased.rgba32.png │ ├── custom_font_normal.rgba32.png │ ├── custom_font_special.rgba32.png │ └── custom_font_title.rgba32.png ├── segment2 │ ├── custom_coopdx_logo.rgba32.png │ ├── custom_hud_ampersand.rgba16.png │ ├── custom_hud_comma.rgba16.png │ ├── custom_hud_dash.rgba16.png │ ├── custom_hud_divide.rgba16.png │ ├── custom_hud_exclamation.rgba16.png │ ├── custom_hud_hashtag.rgba16.png │ ├── custom_hud_j.rgba16.png │ ├── custom_hud_key.rgba16.png │ ├── custom_hud_percent.rgba16.png │ ├── custom_hud_period.rgba16.png │ ├── custom_hud_plus.rgba16.png │ ├── custom_hud_q.rgba16.png │ ├── custom_hud_slash.rgba16.png │ ├── custom_hud_v.rgba16.png │ ├── custom_hud_x.rgba16.png │ ├── custom_hud_z.rgba16.png │ ├── custom_luigi_head.rgba16.png │ ├── custom_ping_empty.rgba16.png │ ├── custom_ping_four.rgba16.png │ ├── custom_ping_full.rgba16.png │ ├── custom_ping_one.rgba16.png │ ├── custom_ping_three.rgba16.png │ ├── custom_ping_two.rgba16.png │ ├── custom_selectionbox_back_icon.rgba16.png │ ├── custom_selectionbox_forward_icon.rgba16.png │ ├── custom_toad_head.rgba16.png │ ├── custom_waluigi_head.rgba16.png │ ├── custom_wario_head.rgba16.png │ └── shadow_spike_custom.ia8.png └── touchcontrols │ ├── touch_button.rgba16.png │ ├── touch_button_a.rgba16.png │ ├── touch_button_a_pressed.rgba16.png │ ├── touch_button_b.rgba16.png │ ├── touch_button_b_pressed.rgba16.png │ ├── touch_button_c_down.rgba16.png │ ├── touch_button_c_down_pressed.rgba16.png │ ├── touch_button_c_left.rgba16.png │ ├── touch_button_c_left_pressed.rgba16.png │ ├── touch_button_c_pressed.rgba16.png │ ├── touch_button_c_right.rgba16.png │ ├── touch_button_c_right_pressed.rgba16.png │ ├── touch_button_c_up.rgba16.png │ ├── touch_button_c_up_pressed.rgba16.png │ ├── touch_button_chat.rgba16.png │ ├── touch_button_chat_pressed.rgba16.png │ ├── touch_button_console.rgba16.png │ ├── touch_button_console_pressed.rgba16.png │ ├── touch_button_dpad_down.rgba16.png │ ├── touch_button_dpad_down_pressed.rgba16.png │ ├── touch_button_dpad_left.rgba16.png │ ├── touch_button_dpad_left_pressed.rgba16.png │ ├── touch_button_dpad_right.rgba16.png │ ├── touch_button_dpad_right_pressed.rgba16.png │ ├── touch_button_dpad_up.rgba16.png │ ├── touch_button_dpad_up_pressed.rgba16.png │ ├── touch_button_l.rgba16.png │ ├── touch_button_l_pressed.rgba16.png │ ├── touch_button_playerlist.rgba16.png │ ├── touch_button_playerlist_pressed.rgba16.png │ ├── touch_button_r.rgba16.png │ ├── touch_button_r_pressed.rgba16.png │ ├── touch_button_start.rgba16.png │ ├── touch_button_start_pressed.rgba16.png │ ├── touch_button_x.rgba16.png │ ├── touch_button_x_pressed.rgba16.png │ ├── touch_button_y.rgba16.png │ ├── touch_button_y_pressed.rgba16.png │ ├── touch_button_z.rgba16.png │ ├── touch_button_z_pressed.rgba16.png │ ├── touch_joystick.rgba16.png │ └── touch_joystick_base.rgba16.png ├── tools ├── .gitignore ├── Makefile ├── aifc_decode.c ├── aiff_extract_codebook.c ├── append_aiffc_table.py ├── append_lang_keys.py ├── apply_patch.sh ├── asm_processor │ ├── asm-processor.py │ ├── build.py │ └── prelude.inc ├── assemble_sound.py ├── audiofile │ ├── Makefile │ ├── audiofile.cpp │ ├── audiofile.h │ └── aupvlist.h ├── calc_bss.sh ├── check_matching_langs.py ├── clang-tidy.sh ├── clean_mapfile.py ├── cleancrcmap.py ├── convert_cake.py ├── convert_skybox.py ├── copy_extended_sounds.py ├── create_patch.sh ├── decompress.py ├── default_crcmap.txt ├── demo_data_converter.py ├── determine-endian-bitwidth.c ├── disassemble_sound.py ├── extract_data_for_mio.c ├── gen_asset_list.cpp ├── hash_file.cpp ├── hashtable.c ├── hashtable.h ├── ido5.3_compiler │ ├── LICENSE.md │ ├── lib │ │ ├── libmalloc.so │ │ ├── libmalloc_old.so │ │ └── rld │ └── usr │ │ ├── bin │ │ └── cc │ │ └── lib │ │ ├── acpp │ │ ├── as0 │ │ ├── as1 │ │ ├── cfe │ │ ├── copt │ │ ├── crt1.o │ │ ├── err.english.cc │ │ ├── libc.so.1 │ │ ├── libexc.so │ │ ├── libgen.so │ │ ├── libm.so │ │ ├── ugen │ │ ├── ujoin │ │ ├── uld │ │ ├── umerge │ │ ├── uopt │ │ └── usplit ├── ido5.3_recomp │ ├── .gitignore │ ├── Makefile │ ├── elf.h │ ├── header.h │ ├── helpers.h │ ├── libc_impl.c │ ├── libc_impl.h │ └── recomp.cpp ├── include │ ├── audiofile.h │ └── aupvlist.h ├── libmio0.c ├── libmio0.h ├── mac-intel-essential.sh ├── mario_anims_converter.py ├── mkzip.py ├── n64cksum.c ├── n64cksum.h ├── n64graphics.c ├── n64graphics.h ├── n64graphics_ci_dir │ ├── LICENSE │ ├── README.md │ ├── exoquant │ │ ├── exoquant.c │ │ └── exoquant.h │ ├── n64graphics_ci.c │ ├── n64graphics_ci.h │ ├── utils.c │ └── utils.h ├── output_level_headers.py ├── patch_libmalloc.py ├── patch_libultra_math.c ├── rasm2armips.py ├── remove_built_in_mods.py ├── revert_patch.sh ├── rice_crcmap.txt ├── sdk-tools │ ├── adpcm │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── quant.c │ │ ├── sampleio.c │ │ ├── util.c │ │ ├── vadpcm.h │ │ ├── vadpcm_dec.c │ │ ├── vadpcm_enc.c │ │ ├── vdecode.c │ │ ├── vencode.c │ │ └── vpredictor.c │ └── tabledesign │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── codebook.c │ │ ├── estimate.c │ │ ├── print.c │ │ ├── tabledesign.c │ │ └── tabledesign.h ├── seq_decoder.py ├── skyconv.c ├── sm64tools.LICENSE ├── texrename.py ├── textconv.c ├── unpak.py ├── utf8.c ├── utf8.h ├── util │ ├── audiofile_strip.patch │ └── generate_audiofile_cpp.py ├── utils.c ├── utils.h └── zeroterm.py ├── util.mk └── windows.ld /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/Android.mk -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/CHANGES -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/Makefile.split -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/README.md -------------------------------------------------------------------------------- /actors/amp/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0800401C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/amp/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/amp/geo.inc.c -------------------------------------------------------------------------------- /actors/amp/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/amp/model.inc.c -------------------------------------------------------------------------------- /actors/bird/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bird/geo.inc.c -------------------------------------------------------------------------------- /actors/bird/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bird/model.inc.c -------------------------------------------------------------------------------- /actors/blargg/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/blargg/geo.inc.c -------------------------------------------------------------------------------- /actors/blargg/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/blargg/model.inc.c -------------------------------------------------------------------------------- /actors/blue_fish/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0301C298.inc.c" 2 | -------------------------------------------------------------------------------- /actors/blue_fish/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/blue_fish/geo.inc.c -------------------------------------------------------------------------------- /actors/bobomb/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bobomb/geo.inc.c -------------------------------------------------------------------------------- /actors/bobomb/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bobomb/model.inc.c -------------------------------------------------------------------------------- /actors/bomb/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bomb/geo.inc.c -------------------------------------------------------------------------------- /actors/bomb/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bomb/model.inc.c -------------------------------------------------------------------------------- /actors/boo/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/boo/geo.inc.c -------------------------------------------------------------------------------- /actors/boo/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/boo/model.inc.c -------------------------------------------------------------------------------- /actors/book/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/book/geo.inc.c -------------------------------------------------------------------------------- /actors/book/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/book/model.inc.c -------------------------------------------------------------------------------- /actors/bookend/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bookend/geo.inc.c -------------------------------------------------------------------------------- /actors/bookend/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bookend/model.inc.c -------------------------------------------------------------------------------- /actors/bowser/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bowser/geo.inc.c -------------------------------------------------------------------------------- /actors/bowser/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bowser/model.inc.c -------------------------------------------------------------------------------- /actors/bub/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0601233C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/bub/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bub/geo.inc.c -------------------------------------------------------------------------------- /actors/bub/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bub/model.inc.c -------------------------------------------------------------------------------- /actors/bubba/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bubba/geo.inc.c -------------------------------------------------------------------------------- /actors/bubba/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bubba/model.inc.c -------------------------------------------------------------------------------- /actors/bubble/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bubble/geo.inc.c -------------------------------------------------------------------------------- /actors/bubble/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bubble/model.inc.c -------------------------------------------------------------------------------- /actors/bully/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bully/geo.inc.c -------------------------------------------------------------------------------- /actors/bully/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/bully/model.inc.c -------------------------------------------------------------------------------- /actors/butterfly/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/butterfly/geo.inc.c -------------------------------------------------------------------------------- /actors/cannon_lid/geo.inc.c: -------------------------------------------------------------------------------- 1 | // Empty geo script 2 | UNUSED static const u64 cannon_lid_unused_1 = 0; 3 | -------------------------------------------------------------------------------- /actors/capswitch/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/capswitch/geo.inc.c -------------------------------------------------------------------------------- /actors/chain_chomp/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_06025160.inc.c" 2 | -------------------------------------------------------------------------------- /actors/chair/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0500576C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/chair/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/chair/geo.inc.c -------------------------------------------------------------------------------- /actors/chair/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/chair/model.inc.c -------------------------------------------------------------------------------- /actors/chuckya/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/chuckya/geo.inc.c -------------------------------------------------------------------------------- /actors/chuckya/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/chuckya/model.inc.c -------------------------------------------------------------------------------- /actors/coin/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/coin/geo.inc.c -------------------------------------------------------------------------------- /actors/coin/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/coin/model.inc.c -------------------------------------------------------------------------------- /actors/common0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/common0.c -------------------------------------------------------------------------------- /actors/common0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/common0.h -------------------------------------------------------------------------------- /actors/common0_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/common0_geo.c -------------------------------------------------------------------------------- /actors/common1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/common1.c -------------------------------------------------------------------------------- /actors/common1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/common1.h -------------------------------------------------------------------------------- /actors/common1_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/common1_geo.c -------------------------------------------------------------------------------- /actors/custom0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/custom0.c -------------------------------------------------------------------------------- /actors/custom0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/custom0.h -------------------------------------------------------------------------------- /actors/custom0_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/custom0_geo.c -------------------------------------------------------------------------------- /actors/cyan_fish/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0600E24C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/cyan_fish/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/cyan_fish/geo.inc.c -------------------------------------------------------------------------------- /actors/dirt/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/dirt/geo.inc.c -------------------------------------------------------------------------------- /actors/dirt/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/dirt/model.inc.c -------------------------------------------------------------------------------- /actors/door/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/door/geo.inc.c -------------------------------------------------------------------------------- /actors/door/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/door/model.inc.c -------------------------------------------------------------------------------- /actors/dorrie/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/dorrie/geo.inc.c -------------------------------------------------------------------------------- /actors/dorrie/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/dorrie/model.inc.c -------------------------------------------------------------------------------- /actors/explosion/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/explosion/geo.inc.c -------------------------------------------------------------------------------- /actors/eyerok/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/eyerok/geo.inc.c -------------------------------------------------------------------------------- /actors/eyerok/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/eyerok/model.inc.c -------------------------------------------------------------------------------- /actors/flame/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/flame/geo.inc.c -------------------------------------------------------------------------------- /actors/flame/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/flame/model.inc.c -------------------------------------------------------------------------------- /actors/flyguy/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_08011A4C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/flyguy/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/flyguy/geo.inc.c -------------------------------------------------------------------------------- /actors/flyguy/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/flyguy/model.inc.c -------------------------------------------------------------------------------- /actors/fwoosh/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/fwoosh/geo.inc.c -------------------------------------------------------------------------------- /actors/fwoosh/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/fwoosh/model.inc.c -------------------------------------------------------------------------------- /actors/goomba/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0801DA34.inc.c" 2 | -------------------------------------------------------------------------------- /actors/goomba/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/goomba/geo.inc.c -------------------------------------------------------------------------------- /actors/goomba/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/goomba/model.inc.c -------------------------------------------------------------------------------- /actors/group0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group0.c -------------------------------------------------------------------------------- /actors/group0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group0.h -------------------------------------------------------------------------------- /actors/group0_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group0_geo.c -------------------------------------------------------------------------------- /actors/group1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group1.c -------------------------------------------------------------------------------- /actors/group1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group1.h -------------------------------------------------------------------------------- /actors/group10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group10.c -------------------------------------------------------------------------------- /actors/group10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group10.h -------------------------------------------------------------------------------- /actors/group10_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group10_geo.c -------------------------------------------------------------------------------- /actors/group11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group11.c -------------------------------------------------------------------------------- /actors/group11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group11.h -------------------------------------------------------------------------------- /actors/group11_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group11_geo.c -------------------------------------------------------------------------------- /actors/group12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group12.c -------------------------------------------------------------------------------- /actors/group12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group12.h -------------------------------------------------------------------------------- /actors/group12_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group12_geo.c -------------------------------------------------------------------------------- /actors/group13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group13.c -------------------------------------------------------------------------------- /actors/group13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group13.h -------------------------------------------------------------------------------- /actors/group13_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group13_geo.c -------------------------------------------------------------------------------- /actors/group14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group14.c -------------------------------------------------------------------------------- /actors/group14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group14.h -------------------------------------------------------------------------------- /actors/group14_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group14_geo.c -------------------------------------------------------------------------------- /actors/group15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group15.c -------------------------------------------------------------------------------- /actors/group15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group15.h -------------------------------------------------------------------------------- /actors/group15_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group15_geo.c -------------------------------------------------------------------------------- /actors/group16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group16.c -------------------------------------------------------------------------------- /actors/group16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group16.h -------------------------------------------------------------------------------- /actors/group16_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group16_geo.c -------------------------------------------------------------------------------- /actors/group17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group17.c -------------------------------------------------------------------------------- /actors/group17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group17.h -------------------------------------------------------------------------------- /actors/group17_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group17_geo.c -------------------------------------------------------------------------------- /actors/group1_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group1_geo.c -------------------------------------------------------------------------------- /actors/group2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group2.c -------------------------------------------------------------------------------- /actors/group2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group2.h -------------------------------------------------------------------------------- /actors/group2_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group2_geo.c -------------------------------------------------------------------------------- /actors/group3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group3.c -------------------------------------------------------------------------------- /actors/group3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group3.h -------------------------------------------------------------------------------- /actors/group3_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group3_geo.c -------------------------------------------------------------------------------- /actors/group4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group4.c -------------------------------------------------------------------------------- /actors/group4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group4.h -------------------------------------------------------------------------------- /actors/group4_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group4_geo.c -------------------------------------------------------------------------------- /actors/group5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group5.c -------------------------------------------------------------------------------- /actors/group5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group5.h -------------------------------------------------------------------------------- /actors/group5_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group5_geo.c -------------------------------------------------------------------------------- /actors/group6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group6.c -------------------------------------------------------------------------------- /actors/group6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group6.h -------------------------------------------------------------------------------- /actors/group6_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group6_geo.c -------------------------------------------------------------------------------- /actors/group7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group7.c -------------------------------------------------------------------------------- /actors/group7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group7.h -------------------------------------------------------------------------------- /actors/group7_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group7_geo.c -------------------------------------------------------------------------------- /actors/group8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group8.c -------------------------------------------------------------------------------- /actors/group8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group8.h -------------------------------------------------------------------------------- /actors/group8_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group8_geo.c -------------------------------------------------------------------------------- /actors/group9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group9.c -------------------------------------------------------------------------------- /actors/group9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group9.h -------------------------------------------------------------------------------- /actors/group9_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/group9_geo.c -------------------------------------------------------------------------------- /actors/heart/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/heart/geo.inc.c -------------------------------------------------------------------------------- /actors/heart/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/heart/model.inc.c -------------------------------------------------------------------------------- /actors/heave_ho/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/heave_ho/geo.inc.c -------------------------------------------------------------------------------- /actors/hoot/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/hoot/geo.inc.c -------------------------------------------------------------------------------- /actors/hoot/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/hoot/model.inc.c -------------------------------------------------------------------------------- /actors/klepto/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/klepto/geo.inc.c -------------------------------------------------------------------------------- /actors/klepto/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/klepto/model.inc.c -------------------------------------------------------------------------------- /actors/koopa/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/koopa/geo.inc.c -------------------------------------------------------------------------------- /actors/koopa/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/koopa/model.inc.c -------------------------------------------------------------------------------- /actors/lakitu_cameraman/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_060058E0.inc.c" 2 | -------------------------------------------------------------------------------- /actors/leaves/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/leaves/geo.inc.c -------------------------------------------------------------------------------- /actors/leaves/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/leaves/model.inc.c -------------------------------------------------------------------------------- /actors/luigi/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/luigi/geo.inc.c -------------------------------------------------------------------------------- /actors/luigi/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/luigi/geo_header.h -------------------------------------------------------------------------------- /actors/luigi/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/luigi/model.inc.c -------------------------------------------------------------------------------- /actors/luigi_cap/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/luigi_cap/geo.inc.c -------------------------------------------------------------------------------- /actors/mad_piano/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/mad_piano/geo.inc.c -------------------------------------------------------------------------------- /actors/manta/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_05008CFC.inc.c" 2 | -------------------------------------------------------------------------------- /actors/manta/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/manta/geo.inc.c -------------------------------------------------------------------------------- /actors/manta/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/manta/model.inc.c -------------------------------------------------------------------------------- /actors/mario/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/mario/geo.inc.c -------------------------------------------------------------------------------- /actors/mario/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/mario/geo_header.h -------------------------------------------------------------------------------- /actors/mario/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/mario/model.inc.c -------------------------------------------------------------------------------- /actors/mario_cap/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/mario_cap/geo.inc.c -------------------------------------------------------------------------------- /actors/metal_box/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/metal_box/geo.inc.c -------------------------------------------------------------------------------- /actors/mips/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/mips/geo.inc.c -------------------------------------------------------------------------------- /actors/mips/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/mips/model.inc.c -------------------------------------------------------------------------------- /actors/mist/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/mist/geo.inc.c -------------------------------------------------------------------------------- /actors/mist/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/mist/model.inc.c -------------------------------------------------------------------------------- /actors/moneybag/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/moneybag/geo.inc.c -------------------------------------------------------------------------------- /actors/mr_i_iris/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/mr_i_iris/geo.inc.c -------------------------------------------------------------------------------- /actors/number/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/number/geo.inc.c -------------------------------------------------------------------------------- /actors/peach/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/peach/geo.inc.c -------------------------------------------------------------------------------- /actors/peach/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/peach/model.inc.c -------------------------------------------------------------------------------- /actors/pebble/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/pebble/model.inc.c -------------------------------------------------------------------------------- /actors/penguin/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/penguin/geo.inc.c -------------------------------------------------------------------------------- /actors/penguin/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/penguin/model.inc.c -------------------------------------------------------------------------------- /actors/pokey/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/pokey/geo.inc.c -------------------------------------------------------------------------------- /actors/pokey/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/pokey/model.inc.c -------------------------------------------------------------------------------- /actors/sand/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/sand/model.inc.c -------------------------------------------------------------------------------- /actors/scuttlebug/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0601504C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/seaweed/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0600A4BC.inc.c" 2 | -------------------------------------------------------------------------------- /actors/seaweed/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/seaweed/geo.inc.c -------------------------------------------------------------------------------- /actors/seaweed/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/seaweed/model.inc.c -------------------------------------------------------------------------------- /actors/skeeter/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/skeeter/geo.inc.c -------------------------------------------------------------------------------- /actors/skeeter/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/skeeter/model.inc.c -------------------------------------------------------------------------------- /actors/small_key/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/small_key/geo.inc.c -------------------------------------------------------------------------------- /actors/smoke/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/smoke/model.inc.c -------------------------------------------------------------------------------- /actors/snowman/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/snowman/geo.inc.c -------------------------------------------------------------------------------- /actors/snowman/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/snowman/model.inc.c -------------------------------------------------------------------------------- /actors/snufit/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/snufit/geo.inc.c -------------------------------------------------------------------------------- /actors/snufit/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/snufit/model.inc.c -------------------------------------------------------------------------------- /actors/sparkle/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/sparkle/geo.inc.c -------------------------------------------------------------------------------- /actors/sparkle/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/sparkle/model.inc.c -------------------------------------------------------------------------------- /actors/spindrift/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_050006AC.inc.c" 2 | -------------------------------------------------------------------------------- /actors/spindrift/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/spindrift/geo.inc.c -------------------------------------------------------------------------------- /actors/spiny/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_05016E94.inc.c" 2 | -------------------------------------------------------------------------------- /actors/spiny/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/spiny/geo.inc.c -------------------------------------------------------------------------------- /actors/spiny/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/spiny/model.inc.c -------------------------------------------------------------------------------- /actors/spiny_egg/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_050157CC.inc.c" 2 | -------------------------------------------------------------------------------- /actors/spiny_egg/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/spiny_egg/geo.inc.c -------------------------------------------------------------------------------- /actors/star/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/star/geo.inc.c -------------------------------------------------------------------------------- /actors/star/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/star/model.inc.c -------------------------------------------------------------------------------- /actors/sushi/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0500AE3C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/sushi/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/sushi/geo.inc.c -------------------------------------------------------------------------------- /actors/sushi/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/sushi/model.inc.c -------------------------------------------------------------------------------- /actors/swoop/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/swoop/geo.inc.c -------------------------------------------------------------------------------- /actors/swoop/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/swoop/model.inc.c -------------------------------------------------------------------------------- /actors/thwomp/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/thwomp/geo.inc.c -------------------------------------------------------------------------------- /actors/thwomp/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/thwomp/model.inc.c -------------------------------------------------------------------------------- /actors/toad/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/toad/geo.inc.c -------------------------------------------------------------------------------- /actors/toad/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/toad/model.inc.c -------------------------------------------------------------------------------- /actors/toad_cap/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/toad_cap/geo.inc.c -------------------------------------------------------------------------------- /actors/tornado/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/tornado/geo.inc.c -------------------------------------------------------------------------------- /actors/tornado/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/tornado/model.inc.c -------------------------------------------------------------------------------- /actors/tree/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/tree/geo.inc.c -------------------------------------------------------------------------------- /actors/tree/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/tree/model.inc.c -------------------------------------------------------------------------------- /actors/ukiki/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/ukiki/geo.inc.c -------------------------------------------------------------------------------- /actors/ukiki/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/ukiki/model.inc.c -------------------------------------------------------------------------------- /actors/unagi/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/unagi/geo.inc.c -------------------------------------------------------------------------------- /actors/unagi/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/unagi/model.inc.c -------------------------------------------------------------------------------- /actors/waluigi/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/waluigi/geo.inc.c -------------------------------------------------------------------------------- /actors/waluigi/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/waluigi/model.inc.c -------------------------------------------------------------------------------- /actors/wario/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/wario/geo.inc.c -------------------------------------------------------------------------------- /actors/wario/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/wario/geo_header.h -------------------------------------------------------------------------------- /actors/wario/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/wario/model.inc.c -------------------------------------------------------------------------------- /actors/wario_cap/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/wario_cap/geo.inc.c -------------------------------------------------------------------------------- /actors/warp_pipe/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/warp_pipe/geo.inc.c -------------------------------------------------------------------------------- /actors/water_ring/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_06013F64.inc.c" 2 | -------------------------------------------------------------------------------- /actors/whomp/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/whomp/geo.inc.c -------------------------------------------------------------------------------- /actors/whomp/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/whomp/model.inc.c -------------------------------------------------------------------------------- /actors/wiggler_body/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0500C760.inc.c" 2 | -------------------------------------------------------------------------------- /actors/wiggler_head/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0500EC74.inc.c" 2 | -------------------------------------------------------------------------------- /actors/yoshi/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/yoshi/geo.inc.c -------------------------------------------------------------------------------- /actors/yoshi/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/yoshi/model.inc.c -------------------------------------------------------------------------------- /actors/yoshi_egg/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/yoshi_egg/geo.inc.c -------------------------------------------------------------------------------- /actors/zcustom0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/zcustom0.c -------------------------------------------------------------------------------- /actors/zcustom0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/zcustom0.h -------------------------------------------------------------------------------- /actors/zcustom0_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/actors/zcustom0_geo.c -------------------------------------------------------------------------------- /assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets.json -------------------------------------------------------------------------------- /assets/anims/anim_00.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_00.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_03.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_03.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_04.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_04.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_05.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_05.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_06.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_06.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_09.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_09.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_0A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_0A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_0D.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_0D.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_0E.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_0E.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_11.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_11.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_12.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_12.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_13.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_13.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_14.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_14.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_15.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_15.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_16.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_16.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_17.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_17.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_18.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_18.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_19.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_19.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_1A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_1A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_1B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_1B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_1C.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_1C.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_1D.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_1D.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_1E.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_1E.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_1F.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_1F.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_20.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_20.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_21.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_21.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_22.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_22.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_23.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_23.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_24.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_24.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_25.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_25.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_26.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_26.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_27.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_27.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_28.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_28.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_29.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_29.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_2A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_2A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_2B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_2B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_2E.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_2E.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_2F.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_2F.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_30.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_30.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_31.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_31.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_32.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_32.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_33.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_33.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_34.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_34.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_35.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_35.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_36.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_36.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_37.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_37.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_38.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_38.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_39.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_39.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_3A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_3A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_3B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_3B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_3E.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_3E.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_3F.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_3F.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_40.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_40.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_41.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_41.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_42.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_42.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_43.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_43.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_44.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_44.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_47.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_47.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_48.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_48.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_49.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_49.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_4A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_4A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_4B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_4B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_4C.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_4C.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_4F.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_4F.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_50.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_50.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_51.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_51.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_52.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_52.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_53.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_53.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_54.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_54.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_55.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_55.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_58.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_58.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_59.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_59.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_5A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_5A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_5B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_5B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_5C.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/anims/anim_5C.inc.c -------------------------------------------------------------------------------- /assets/demo_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/assets/demo_data.json -------------------------------------------------------------------------------- /autogen/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/autogen/autogen.sh -------------------------------------------------------------------------------- /autogen/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/autogen/common.py -------------------------------------------------------------------------------- /autogen/gen_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/autogen/gen_hooks.py -------------------------------------------------------------------------------- /autogen/gen_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/autogen/gen_math.py -------------------------------------------------------------------------------- /autogen/gen_sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/autogen/gen_sound.py -------------------------------------------------------------------------------- /autogen/vec_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/autogen/vec_types.py -------------------------------------------------------------------------------- /bin/bbh_skybox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/bbh_skybox.c -------------------------------------------------------------------------------- /bin/bitdw_skybox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/bitdw_skybox.c -------------------------------------------------------------------------------- /bin/bitfs_skybox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/bitfs_skybox.c -------------------------------------------------------------------------------- /bin/bits_skybox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/bits_skybox.c -------------------------------------------------------------------------------- /bin/cave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/cave.c -------------------------------------------------------------------------------- /bin/ccm_skybox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/ccm_skybox.c -------------------------------------------------------------------------------- /bin/clouds_skybox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/clouds_skybox.c -------------------------------------------------------------------------------- /bin/custom_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/custom_font.c -------------------------------------------------------------------------------- /bin/custom_textures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/custom_textures.c -------------------------------------------------------------------------------- /bin/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/effect.c -------------------------------------------------------------------------------- /bin/eu/translation_de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/eu/translation_de.c -------------------------------------------------------------------------------- /bin/eu/translation_en.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/eu/translation_en.c -------------------------------------------------------------------------------- /bin/eu/translation_fr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/eu/translation_fr.c -------------------------------------------------------------------------------- /bin/fire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/fire.c -------------------------------------------------------------------------------- /bin/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/generic.c -------------------------------------------------------------------------------- /bin/grass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/grass.c -------------------------------------------------------------------------------- /bin/inside.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/inside.c -------------------------------------------------------------------------------- /bin/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/machine.c -------------------------------------------------------------------------------- /bin/mountain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/mountain.c -------------------------------------------------------------------------------- /bin/outside.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/outside.c -------------------------------------------------------------------------------- /bin/segment2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/segment2.c -------------------------------------------------------------------------------- /bin/sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/sky.c -------------------------------------------------------------------------------- /bin/snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/snow.c -------------------------------------------------------------------------------- /bin/spooky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/spooky.c -------------------------------------------------------------------------------- /bin/ssl_skybox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/ssl_skybox.c -------------------------------------------------------------------------------- /bin/title_screen_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/title_screen_bg.c -------------------------------------------------------------------------------- /bin/water.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/water.c -------------------------------------------------------------------------------- /bin/water_skybox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/water_skybox.c -------------------------------------------------------------------------------- /bin/wdw_skybox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/bin/wdw_skybox.c -------------------------------------------------------------------------------- /charmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/charmap.txt -------------------------------------------------------------------------------- /charmap_menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/charmap_menu.txt -------------------------------------------------------------------------------- /credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/credits.txt -------------------------------------------------------------------------------- /data/behavior_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/behavior_data.c -------------------------------------------------------------------------------- /data/behavior_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/behavior_table.c -------------------------------------------------------------------------------- /data/dynos.c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos.c.h -------------------------------------------------------------------------------- /data/dynos.cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos.cpp.h -------------------------------------------------------------------------------- /data/dynos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos.h -------------------------------------------------------------------------------- /data/dynos_bin_col.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_bin_col.cpp -------------------------------------------------------------------------------- /data/dynos_bin_geo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_bin_geo.cpp -------------------------------------------------------------------------------- /data/dynos_bin_gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_bin_gfx.cpp -------------------------------------------------------------------------------- /data/dynos_bin_lvl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_bin_lvl.cpp -------------------------------------------------------------------------------- /data/dynos_bin_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_bin_read.cpp -------------------------------------------------------------------------------- /data/dynos_bin_tex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_bin_tex.cpp -------------------------------------------------------------------------------- /data/dynos_bin_vtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_bin_vtx.cpp -------------------------------------------------------------------------------- /data/dynos_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_c.cpp -------------------------------------------------------------------------------- /data/dynos_cmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_cmap.cpp -------------------------------------------------------------------------------- /data/dynos_cmap.cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_cmap.cpp.h -------------------------------------------------------------------------------- /data/dynos_gfx_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_gfx_init.cpp -------------------------------------------------------------------------------- /data/dynos_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_level.cpp -------------------------------------------------------------------------------- /data/dynos_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_main.cpp -------------------------------------------------------------------------------- /data/dynos_mgr_anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_mgr_anim.cpp -------------------------------------------------------------------------------- /data/dynos_mgr_bhv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_mgr_bhv.cpp -------------------------------------------------------------------------------- /data/dynos_mgr_col.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_mgr_col.cpp -------------------------------------------------------------------------------- /data/dynos_mgr_gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_mgr_gfx.cpp -------------------------------------------------------------------------------- /data/dynos_mgr_lvl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_mgr_lvl.cpp -------------------------------------------------------------------------------- /data/dynos_mgr_pack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_mgr_pack.cpp -------------------------------------------------------------------------------- /data/dynos_mgr_tex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_mgr_tex.cpp -------------------------------------------------------------------------------- /data/dynos_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_misc.cpp -------------------------------------------------------------------------------- /data/dynos_warps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/data/dynos_warps.cpp -------------------------------------------------------------------------------- /developer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/developer/README.txt -------------------------------------------------------------------------------- /developer/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/developer/compile.sh -------------------------------------------------------------------------------- /developer/cpp-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/developer/cpp-check.sh -------------------------------------------------------------------------------- /developer/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/developer/debug.sh -------------------------------------------------------------------------------- /docs/lua/constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/docs/lua/constants.md -------------------------------------------------------------------------------- /docs/lua/examples/custom-level/levels/bob/area_1/spline.inc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/lua/examples/custom-level/levels/bob/geo.inc.c: -------------------------------------------------------------------------------- 1 | #include "levels/bob/area_1/geo.inc.c" 2 | -------------------------------------------------------------------------------- /docs/lua/examples/lighting-engine-demo/levels/canals/area_1/spline.inc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/lua/examples/lighting-engine-demo/levels/hl/area_1/spline.inc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/lua/examples/lighting-engine-demo/levels/hl/geo.inc.c: -------------------------------------------------------------------------------- 1 | #include "levels/hl/area_1/geo.inc.c" 2 | -------------------------------------------------------------------------------- /docs/lua/functions-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/docs/lua/functions-2.md -------------------------------------------------------------------------------- /docs/lua/functions-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/docs/lua/functions-3.md -------------------------------------------------------------------------------- /docs/lua/functions-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/docs/lua/functions-4.md -------------------------------------------------------------------------------- /docs/lua/functions-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/docs/lua/functions-5.md -------------------------------------------------------------------------------- /docs/lua/functions-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/docs/lua/functions-6.md -------------------------------------------------------------------------------- /docs/lua/functions-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/docs/lua/functions-7.md -------------------------------------------------------------------------------- /docs/lua/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/docs/lua/functions.md -------------------------------------------------------------------------------- /docs/lua/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/docs/lua/globals.md -------------------------------------------------------------------------------- /docs/lua/lua.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/docs/lua/lua.md -------------------------------------------------------------------------------- /docs/lua/structs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/docs/lua/structs.md -------------------------------------------------------------------------------- /dynos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/dynos.mk -------------------------------------------------------------------------------- /extract_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/extract_assets.py -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/format.sh -------------------------------------------------------------------------------- /include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/GL/eglew.h -------------------------------------------------------------------------------- /include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/GL/glew.h -------------------------------------------------------------------------------- /include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/GL/glxew.h -------------------------------------------------------------------------------- /include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/GL/wglew.h -------------------------------------------------------------------------------- /include/PR/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/abi.h -------------------------------------------------------------------------------- /include/PR/gbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/gbi.h -------------------------------------------------------------------------------- /include/PR/gs2dex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/gs2dex.h -------------------------------------------------------------------------------- /include/PR/gu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/gu.h -------------------------------------------------------------------------------- /include/PR/libaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/libaudio.h -------------------------------------------------------------------------------- /include/PR/libultra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/libultra.h -------------------------------------------------------------------------------- /include/PR/mbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/mbi.h -------------------------------------------------------------------------------- /include/PR/os_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_ai.h -------------------------------------------------------------------------------- /include/PR/os_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_cache.h -------------------------------------------------------------------------------- /include/PR/os_cont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_cont.h -------------------------------------------------------------------------------- /include/PR/os_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_eeprom.h -------------------------------------------------------------------------------- /include/PR/os_libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_libc.h -------------------------------------------------------------------------------- /include/PR/os_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_message.h -------------------------------------------------------------------------------- /include/PR/os_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_misc.h -------------------------------------------------------------------------------- /include/PR/os_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_pi.h -------------------------------------------------------------------------------- /include/PR/os_rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_rdp.h -------------------------------------------------------------------------------- /include/PR/os_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_thread.h -------------------------------------------------------------------------------- /include/PR/os_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_time.h -------------------------------------------------------------------------------- /include/PR/os_tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_tlb.h -------------------------------------------------------------------------------- /include/PR/os_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/os_vi.h -------------------------------------------------------------------------------- /include/PR/sptask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/sptask.h -------------------------------------------------------------------------------- /include/PR/ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/ucode.h -------------------------------------------------------------------------------- /include/PR/ultratypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/PR/ultratypes.h -------------------------------------------------------------------------------- /include/behavior_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/behavior_data.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/config.h -------------------------------------------------------------------------------- /include/course_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/course_table.h -------------------------------------------------------------------------------- /include/dialog_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/dialog_ids.h -------------------------------------------------------------------------------- /include/geo_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/geo_commands.h -------------------------------------------------------------------------------- /include/gfx_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/gfx_symbols.h -------------------------------------------------------------------------------- /include/helper_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/helper_macros.h -------------------------------------------------------------------------------- /include/level_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/level_table.h -------------------------------------------------------------------------------- /include/libc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/libc/math.h -------------------------------------------------------------------------------- /include/libc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/libc/stdarg.h -------------------------------------------------------------------------------- /include/libc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/libc/stddef.h -------------------------------------------------------------------------------- /include/libc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/libc/stdio.h -------------------------------------------------------------------------------- /include/libc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/libc/stdlib.h -------------------------------------------------------------------------------- /include/libc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/libc/string.h -------------------------------------------------------------------------------- /include/luigi_sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/luigi_sounds.h -------------------------------------------------------------------------------- /include/macro_presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/macro_presets.h -------------------------------------------------------------------------------- /include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/macros.h -------------------------------------------------------------------------------- /include/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/macros.inc -------------------------------------------------------------------------------- /include/model_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/model_ids.h -------------------------------------------------------------------------------- /include/object_fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/object_fields.h -------------------------------------------------------------------------------- /include/platform_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/platform_info.h -------------------------------------------------------------------------------- /include/segments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/segments.h -------------------------------------------------------------------------------- /include/seq_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/seq_ids.h -------------------------------------------------------------------------------- /include/seq_luigi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/seq_luigi.inc -------------------------------------------------------------------------------- /include/seq_macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/seq_macros.inc -------------------------------------------------------------------------------- /include/seq_toad.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/seq_toad.inc -------------------------------------------------------------------------------- /include/seq_wario.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/seq_wario.inc -------------------------------------------------------------------------------- /include/sm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/sm64.h -------------------------------------------------------------------------------- /include/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/sounds.h -------------------------------------------------------------------------------- /include/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/stb/stb_image.h -------------------------------------------------------------------------------- /include/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/textures.h -------------------------------------------------------------------------------- /include/tinfl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/tinfl.h -------------------------------------------------------------------------------- /include/toad_sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/toad_sounds.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/types.h -------------------------------------------------------------------------------- /include/ultra64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/ultra64.h -------------------------------------------------------------------------------- /include/wario_sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/include/wario_sounds.h -------------------------------------------------------------------------------- /lang/Czech.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lang/Czech.ini -------------------------------------------------------------------------------- /lang/Dutch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lang/Dutch.ini -------------------------------------------------------------------------------- /lang/English.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lang/English.ini -------------------------------------------------------------------------------- /lang/French.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lang/French.ini -------------------------------------------------------------------------------- /lang/German.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lang/German.ini -------------------------------------------------------------------------------- /lang/Italian.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lang/Italian.ini -------------------------------------------------------------------------------- /lang/Japanese.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lang/Japanese.ini -------------------------------------------------------------------------------- /lang/Polish.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lang/Polish.ini -------------------------------------------------------------------------------- /lang/Portuguese.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lang/Portuguese.ini -------------------------------------------------------------------------------- /lang/Russian.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lang/Russian.ini -------------------------------------------------------------------------------- /lang/Spanish.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lang/Spanish.ini -------------------------------------------------------------------------------- /levels/bbh/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bbh/geo.c -------------------------------------------------------------------------------- /levels/bbh/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bbh/header.h -------------------------------------------------------------------------------- /levels/bbh/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bbh/level.yaml -------------------------------------------------------------------------------- /levels/bbh/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bbh/leveldata.c -------------------------------------------------------------------------------- /levels/bbh/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bbh/script.c -------------------------------------------------------------------------------- /levels/bbh/tumbling_platform_far/collision.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/bitdw/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bitdw/geo.c -------------------------------------------------------------------------------- /levels/bitdw/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bitdw/header.h -------------------------------------------------------------------------------- /levels/bitdw/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bitdw/level.yaml -------------------------------------------------------------------------------- /levels/bitdw/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bitdw/script.c -------------------------------------------------------------------------------- /levels/bitfs/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bitfs/geo.c -------------------------------------------------------------------------------- /levels/bitfs/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bitfs/header.h -------------------------------------------------------------------------------- /levels/bitfs/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bitfs/level.yaml -------------------------------------------------------------------------------- /levels/bitfs/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bitfs/script.c -------------------------------------------------------------------------------- /levels/bits/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bits/geo.c -------------------------------------------------------------------------------- /levels/bits/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bits/header.h -------------------------------------------------------------------------------- /levels/bits/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bits/level.yaml -------------------------------------------------------------------------------- /levels/bits/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bits/leveldata.c -------------------------------------------------------------------------------- /levels/bits/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bits/script.c -------------------------------------------------------------------------------- /levels/bob/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bob/geo.c -------------------------------------------------------------------------------- /levels/bob/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bob/header.h -------------------------------------------------------------------------------- /levels/bob/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bob/level.yaml -------------------------------------------------------------------------------- /levels/bob/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bob/leveldata.c -------------------------------------------------------------------------------- /levels/bob/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bob/script.c -------------------------------------------------------------------------------- /levels/bowser_1/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bowser_1/geo.c -------------------------------------------------------------------------------- /levels/bowser_2/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bowser_2/geo.c -------------------------------------------------------------------------------- /levels/bowser_3/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/bowser_3/geo.c -------------------------------------------------------------------------------- /levels/castle_inside/clock_hour_hand/collision.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/castle_inside/clock_minute_hand/collision.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/ccm/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ccm/geo.c -------------------------------------------------------------------------------- /levels/ccm/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ccm/header.h -------------------------------------------------------------------------------- /levels/ccm/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ccm/level.yaml -------------------------------------------------------------------------------- /levels/ccm/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ccm/leveldata.c -------------------------------------------------------------------------------- /levels/ccm/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ccm/script.c -------------------------------------------------------------------------------- /levels/cotmc/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/cotmc/geo.c -------------------------------------------------------------------------------- /levels/cotmc/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/cotmc/header.h -------------------------------------------------------------------------------- /levels/cotmc/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/cotmc/level.yaml -------------------------------------------------------------------------------- /levels/cotmc/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/cotmc/script.c -------------------------------------------------------------------------------- /levels/course_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/course_defines.h -------------------------------------------------------------------------------- /levels/ddd/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ddd/geo.c -------------------------------------------------------------------------------- /levels/ddd/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ddd/header.h -------------------------------------------------------------------------------- /levels/ddd/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ddd/level.yaml -------------------------------------------------------------------------------- /levels/ddd/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ddd/leveldata.c -------------------------------------------------------------------------------- /levels/ddd/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ddd/script.c -------------------------------------------------------------------------------- /levels/ending/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ending/geo.c -------------------------------------------------------------------------------- /levels/ending/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ending/header.h -------------------------------------------------------------------------------- /levels/ending/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ending/script.c -------------------------------------------------------------------------------- /levels/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/entry.c -------------------------------------------------------------------------------- /levels/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/entry.h -------------------------------------------------------------------------------- /levels/hmc/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/hmc/geo.c -------------------------------------------------------------------------------- /levels/hmc/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/hmc/header.h -------------------------------------------------------------------------------- /levels/hmc/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/hmc/level.yaml -------------------------------------------------------------------------------- /levels/hmc/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/hmc/leveldata.c -------------------------------------------------------------------------------- /levels/hmc/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/hmc/script.c -------------------------------------------------------------------------------- /levels/intro/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/intro/geo.c -------------------------------------------------------------------------------- /levels/intro/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/intro/header.h -------------------------------------------------------------------------------- /levels/intro/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/intro/script.c -------------------------------------------------------------------------------- /levels/jrb/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/jrb/geo.c -------------------------------------------------------------------------------- /levels/jrb/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/jrb/header.h -------------------------------------------------------------------------------- /levels/jrb/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/jrb/level.yaml -------------------------------------------------------------------------------- /levels/jrb/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/jrb/leveldata.c -------------------------------------------------------------------------------- /levels/jrb/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/jrb/script.c -------------------------------------------------------------------------------- /levels/level_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/level_defines.h -------------------------------------------------------------------------------- /levels/level_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/level_rules.mk -------------------------------------------------------------------------------- /levels/lll/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/lll/geo.c -------------------------------------------------------------------------------- /levels/lll/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/lll/header.h -------------------------------------------------------------------------------- /levels/lll/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/lll/level.yaml -------------------------------------------------------------------------------- /levels/lll/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/lll/leveldata.c -------------------------------------------------------------------------------- /levels/lll/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/lll/script.c -------------------------------------------------------------------------------- /levels/menu/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/menu/geo.c -------------------------------------------------------------------------------- /levels/menu/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/menu/header.h -------------------------------------------------------------------------------- /levels/menu/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/menu/leveldata.c -------------------------------------------------------------------------------- /levels/menu/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/menu/script.c -------------------------------------------------------------------------------- /levels/pss/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/pss/geo.c -------------------------------------------------------------------------------- /levels/pss/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/pss/header.h -------------------------------------------------------------------------------- /levels/pss/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/pss/level.yaml -------------------------------------------------------------------------------- /levels/pss/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/pss/leveldata.c -------------------------------------------------------------------------------- /levels/pss/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/pss/script.c -------------------------------------------------------------------------------- /levels/rr/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/rr/geo.c -------------------------------------------------------------------------------- /levels/rr/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/rr/header.h -------------------------------------------------------------------------------- /levels/rr/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/rr/level.yaml -------------------------------------------------------------------------------- /levels/rr/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/rr/leveldata.c -------------------------------------------------------------------------------- /levels/rr/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/rr/script.c -------------------------------------------------------------------------------- /levels/rr/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/rr/texture.inc.c -------------------------------------------------------------------------------- /levels/sa/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/sa/geo.c -------------------------------------------------------------------------------- /levels/sa/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/sa/header.h -------------------------------------------------------------------------------- /levels/sa/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/sa/level.yaml -------------------------------------------------------------------------------- /levels/sa/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/sa/leveldata.c -------------------------------------------------------------------------------- /levels/sa/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/sa/script.c -------------------------------------------------------------------------------- /levels/sa/texture.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/scripts.c -------------------------------------------------------------------------------- /levels/scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/scripts.h -------------------------------------------------------------------------------- /levels/sl/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/sl/geo.c -------------------------------------------------------------------------------- /levels/sl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/sl/header.h -------------------------------------------------------------------------------- /levels/sl/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/sl/level.yaml -------------------------------------------------------------------------------- /levels/sl/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/sl/leveldata.c -------------------------------------------------------------------------------- /levels/sl/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/sl/script.c -------------------------------------------------------------------------------- /levels/sl/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/sl/texture.inc.c -------------------------------------------------------------------------------- /levels/ssl/eyerok_col/geo.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/ssl/eyerok_col/model.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/ssl/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ssl/geo.c -------------------------------------------------------------------------------- /levels/ssl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ssl/header.h -------------------------------------------------------------------------------- /levels/ssl/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ssl/level.yaml -------------------------------------------------------------------------------- /levels/ssl/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ssl/leveldata.c -------------------------------------------------------------------------------- /levels/ssl/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ssl/script.c -------------------------------------------------------------------------------- /levels/thi/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/thi/geo.c -------------------------------------------------------------------------------- /levels/thi/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/thi/header.h -------------------------------------------------------------------------------- /levels/thi/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/thi/level.yaml -------------------------------------------------------------------------------- /levels/thi/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/thi/leveldata.c -------------------------------------------------------------------------------- /levels/thi/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/thi/script.c -------------------------------------------------------------------------------- /levels/totwc/cloud/collision.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/totwc/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/totwc/geo.c -------------------------------------------------------------------------------- /levels/totwc/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/totwc/header.h -------------------------------------------------------------------------------- /levels/totwc/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/totwc/level.yaml -------------------------------------------------------------------------------- /levels/totwc/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/totwc/script.c -------------------------------------------------------------------------------- /levels/ttc/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ttc/geo.c -------------------------------------------------------------------------------- /levels/ttc/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ttc/header.h -------------------------------------------------------------------------------- /levels/ttc/large_gear/collision.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/ttc/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ttc/level.yaml -------------------------------------------------------------------------------- /levels/ttc/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ttc/leveldata.c -------------------------------------------------------------------------------- /levels/ttc/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ttc/script.c -------------------------------------------------------------------------------- /levels/ttc/small_gear/collision.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/ttm/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ttm/geo.c -------------------------------------------------------------------------------- /levels/ttm/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ttm/header.h -------------------------------------------------------------------------------- /levels/ttm/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ttm/level.yaml -------------------------------------------------------------------------------- /levels/ttm/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ttm/leveldata.c -------------------------------------------------------------------------------- /levels/ttm/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/ttm/script.c -------------------------------------------------------------------------------- /levels/vcutm/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/vcutm/geo.c -------------------------------------------------------------------------------- /levels/vcutm/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/vcutm/header.h -------------------------------------------------------------------------------- /levels/vcutm/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/vcutm/level.yaml -------------------------------------------------------------------------------- /levels/vcutm/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/vcutm/script.c -------------------------------------------------------------------------------- /levels/wdw/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wdw/geo.c -------------------------------------------------------------------------------- /levels/wdw/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wdw/header.h -------------------------------------------------------------------------------- /levels/wdw/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wdw/level.yaml -------------------------------------------------------------------------------- /levels/wdw/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wdw/leveldata.c -------------------------------------------------------------------------------- /levels/wdw/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wdw/script.c -------------------------------------------------------------------------------- /levels/wf/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wf/geo.c -------------------------------------------------------------------------------- /levels/wf/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wf/header.h -------------------------------------------------------------------------------- /levels/wf/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wf/level.yaml -------------------------------------------------------------------------------- /levels/wf/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wf/leveldata.c -------------------------------------------------------------------------------- /levels/wf/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wf/script.c -------------------------------------------------------------------------------- /levels/wf/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wf/texture.inc.c -------------------------------------------------------------------------------- /levels/wmotr/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wmotr/geo.c -------------------------------------------------------------------------------- /levels/wmotr/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wmotr/header.h -------------------------------------------------------------------------------- /levels/wmotr/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wmotr/level.yaml -------------------------------------------------------------------------------- /levels/wmotr/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/levels/wmotr/script.c -------------------------------------------------------------------------------- /lib/coopnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/coopnet/README.md -------------------------------------------------------------------------------- /lib/lua/include/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/lua/include/lua.h -------------------------------------------------------------------------------- /lib/lua/include/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/lua/include/lua.hpp -------------------------------------------------------------------------------- /lib/src/alBnkfNew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/alBnkfNew.c -------------------------------------------------------------------------------- /lib/src/guLookAtRef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/guLookAtRef.c -------------------------------------------------------------------------------- /lib/src/guMtxF2L.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/guMtxF2L.c -------------------------------------------------------------------------------- /lib/src/guNormalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/guNormalize.c -------------------------------------------------------------------------------- /lib/src/guOrthoF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/guOrthoF.c -------------------------------------------------------------------------------- /lib/src/guRotateF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/guRotateF.c -------------------------------------------------------------------------------- /lib/src/guScaleF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/guScaleF.c -------------------------------------------------------------------------------- /lib/src/guTranslateF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/guTranslateF.c -------------------------------------------------------------------------------- /lib/src/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/hardware.h -------------------------------------------------------------------------------- /lib/src/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/ldiv.c -------------------------------------------------------------------------------- /lib/src/leointerrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/leointerrupt.c -------------------------------------------------------------------------------- /lib/src/new_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/new_func.h -------------------------------------------------------------------------------- /lib/src/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/os.h -------------------------------------------------------------------------------- /lib/src/osAi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/lib/src/osAi.h -------------------------------------------------------------------------------- /mods/arena/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/mods/arena/main.lua -------------------------------------------------------------------------------- /mods/cheats.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/mods/cheats.lua -------------------------------------------------------------------------------- /mods/hide-and-seek.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/mods/hide-and-seek.lua -------------------------------------------------------------------------------- /mods/sm74/course.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/mods/sm74/course.lua -------------------------------------------------------------------------------- /mods/sm74/dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/mods/sm74/dialog.lua -------------------------------------------------------------------------------- /mods/sm74/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/mods/sm74/main.lua -------------------------------------------------------------------------------- /mods/sm74/stars.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/mods/sm74/stars.lua -------------------------------------------------------------------------------- /mods/star-road/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/mods/star-road/main.lua -------------------------------------------------------------------------------- /palettes/Luigi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/palettes/Luigi.ini -------------------------------------------------------------------------------- /palettes/Mario.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/palettes/Mario.ini -------------------------------------------------------------------------------- /palettes/Toad.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/palettes/Toad.ini -------------------------------------------------------------------------------- /palettes/Waluigi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/palettes/Waluigi.ini -------------------------------------------------------------------------------- /palettes/Wario.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/palettes/Wario.ini -------------------------------------------------------------------------------- /platform/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /platform/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/platform/.idea/misc.xml -------------------------------------------------------------------------------- /platform/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/platform/.idea/vcs.xml -------------------------------------------------------------------------------- /platform/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/platform/Dockerfile -------------------------------------------------------------------------------- /platform/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/platform/build.gradle -------------------------------------------------------------------------------- /platform/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/platform/gradlew -------------------------------------------------------------------------------- /platform/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/platform/gradlew.bat -------------------------------------------------------------------------------- /platform/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /res/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/res/icon.icns -------------------------------------------------------------------------------- /res/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/res/icon.ico -------------------------------------------------------------------------------- /res/icon.rc: -------------------------------------------------------------------------------- 1 | id ICON res/icon.ico -------------------------------------------------------------------------------- /sm64.eu.sha1: -------------------------------------------------------------------------------- 1 | 4ac5721683d0e0b6bbb561b58a71740845dceea9 build/eu/sm64.eu.z64 2 | -------------------------------------------------------------------------------- /sm64.jp.sha1: -------------------------------------------------------------------------------- 1 | 8a20a5c83d6ceb0f0506cfc9fa20d8f438cafe51 build/jp/sm64.jp.z64 2 | -------------------------------------------------------------------------------- /sm64.sh.sha1: -------------------------------------------------------------------------------- 1 | 3f319ae697533a255a1003d09202379d78d5a2e0 build/sh/sm64.sh.z64 2 | -------------------------------------------------------------------------------- /sm64.us.sha1: -------------------------------------------------------------------------------- 1 | 9bef1128717f958171a4afac3ed78ee2bb4e86ce build/us/sm64.us.z64 2 | -------------------------------------------------------------------------------- /sound/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/sound/README.md -------------------------------------------------------------------------------- /sound/samples_assets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/sound/samples_assets.c -------------------------------------------------------------------------------- /sound/samples_offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/sound/samples_offsets.h -------------------------------------------------------------------------------- /sound/sequences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/sound/sequences.json -------------------------------------------------------------------------------- /sound/sound_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/sound/sound_data.c -------------------------------------------------------------------------------- /sound/sound_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/sound/sound_data.h -------------------------------------------------------------------------------- /src/audio/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/data.c -------------------------------------------------------------------------------- /src/audio/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/data.h -------------------------------------------------------------------------------- /src/audio/effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/effects.c -------------------------------------------------------------------------------- /src/audio/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/effects.h -------------------------------------------------------------------------------- /src/audio/external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/external.c -------------------------------------------------------------------------------- /src/audio/external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/external.h -------------------------------------------------------------------------------- /src/audio/globals_start.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | u64 gAudioGlobalsStartMarker; 4 | -------------------------------------------------------------------------------- /src/audio/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/heap.c -------------------------------------------------------------------------------- /src/audio/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/heap.h -------------------------------------------------------------------------------- /src/audio/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/internal.h -------------------------------------------------------------------------------- /src/audio/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/load.c -------------------------------------------------------------------------------- /src/audio/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/load.h -------------------------------------------------------------------------------- /src/audio/playback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/playback.c -------------------------------------------------------------------------------- /src/audio/playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/playback.h -------------------------------------------------------------------------------- /src/audio/port_eu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/port_eu.c -------------------------------------------------------------------------------- /src/audio/seqplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/seqplayer.c -------------------------------------------------------------------------------- /src/audio/seqplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/seqplayer.h -------------------------------------------------------------------------------- /src/audio/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/synthesis.c -------------------------------------------------------------------------------- /src/audio/synthesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/audio/synthesis.h -------------------------------------------------------------------------------- /src/buffers/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/buffers/buffers.c -------------------------------------------------------------------------------- /src/buffers/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/buffers/buffers.h -------------------------------------------------------------------------------- /src/buffers/zbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/buffers/zbuffer.c -------------------------------------------------------------------------------- /src/buffers/zbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/buffers/zbuffer.h -------------------------------------------------------------------------------- /src/engine/geo_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/engine/geo_layout.c -------------------------------------------------------------------------------- /src/engine/geo_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/engine/geo_layout.h -------------------------------------------------------------------------------- /src/engine/graph_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/engine/graph_node.c -------------------------------------------------------------------------------- /src/engine/graph_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/engine/graph_node.h -------------------------------------------------------------------------------- /src/engine/math_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/engine/math_util.c -------------------------------------------------------------------------------- /src/engine/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/engine/math_util.h -------------------------------------------------------------------------------- /src/game/area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/area.c -------------------------------------------------------------------------------- /src/game/area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/area.h -------------------------------------------------------------------------------- /src/game/bettercamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/bettercamera.h -------------------------------------------------------------------------------- /src/game/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/camera.c -------------------------------------------------------------------------------- /src/game/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/camera.h -------------------------------------------------------------------------------- /src/game/characters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/characters.c -------------------------------------------------------------------------------- /src/game/characters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/characters.h -------------------------------------------------------------------------------- /src/game/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/debug.c -------------------------------------------------------------------------------- /src/game/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/debug.h -------------------------------------------------------------------------------- /src/game/debug_course.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/debug_course.c -------------------------------------------------------------------------------- /src/game/debug_course.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/debug_course.h -------------------------------------------------------------------------------- /src/game/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/decompress.h -------------------------------------------------------------------------------- /src/game/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/display.h -------------------------------------------------------------------------------- /src/game/envfx_snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/envfx_snow.c -------------------------------------------------------------------------------- /src/game/envfx_snow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/envfx_snow.h -------------------------------------------------------------------------------- /src/game/game_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/game_init.c -------------------------------------------------------------------------------- /src/game/game_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/game_init.h -------------------------------------------------------------------------------- /src/game/geo_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/geo_misc.c -------------------------------------------------------------------------------- /src/game/geo_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/geo_misc.h -------------------------------------------------------------------------------- /src/game/hardcoded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/hardcoded.c -------------------------------------------------------------------------------- /src/game/hardcoded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/hardcoded.h -------------------------------------------------------------------------------- /src/game/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/hud.c -------------------------------------------------------------------------------- /src/game/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/hud.h -------------------------------------------------------------------------------- /src/game/ingame_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/ingame_menu.c -------------------------------------------------------------------------------- /src/game/ingame_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/ingame_menu.h -------------------------------------------------------------------------------- /src/game/interaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/interaction.c -------------------------------------------------------------------------------- /src/game/interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/interaction.h -------------------------------------------------------------------------------- /src/game/level_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/level_geo.c -------------------------------------------------------------------------------- /src/game/level_geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/level_geo.h -------------------------------------------------------------------------------- /src/game/level_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/level_info.c -------------------------------------------------------------------------------- /src/game/level_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/level_info.h -------------------------------------------------------------------------------- /src/game/level_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/level_update.c -------------------------------------------------------------------------------- /src/game/level_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/level_update.h -------------------------------------------------------------------------------- /src/game/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/main.c -------------------------------------------------------------------------------- /src/game/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/main.h -------------------------------------------------------------------------------- /src/game/mario.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/mario.c -------------------------------------------------------------------------------- /src/game/mario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/mario.h -------------------------------------------------------------------------------- /src/game/mario_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/mario_misc.c -------------------------------------------------------------------------------- /src/game/mario_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/mario_misc.h -------------------------------------------------------------------------------- /src/game/mario_step.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/mario_step.c -------------------------------------------------------------------------------- /src/game/mario_step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/mario_step.h -------------------------------------------------------------------------------- /src/game/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/memory.c -------------------------------------------------------------------------------- /src/game/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/memory.h -------------------------------------------------------------------------------- /src/game/paintings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/paintings.c -------------------------------------------------------------------------------- /src/game/paintings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/paintings.h -------------------------------------------------------------------------------- /src/game/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/print.c -------------------------------------------------------------------------------- /src/game/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/print.h -------------------------------------------------------------------------------- /src/game/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/profiler.c -------------------------------------------------------------------------------- /src/game/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/profiler.h -------------------------------------------------------------------------------- /src/game/rng_position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/rng_position.c -------------------------------------------------------------------------------- /src/game/rng_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/rng_position.h -------------------------------------------------------------------------------- /src/game/rumble_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/rumble_init.c -------------------------------------------------------------------------------- /src/game/rumble_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/rumble_init.h -------------------------------------------------------------------------------- /src/game/save_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/save_file.c -------------------------------------------------------------------------------- /src/game/save_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/save_file.h -------------------------------------------------------------------------------- /src/game/segment2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/segment2.h -------------------------------------------------------------------------------- /src/game/segment7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/segment7.h -------------------------------------------------------------------------------- /src/game/shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/shadow.c -------------------------------------------------------------------------------- /src/game/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/shadow.h -------------------------------------------------------------------------------- /src/game/skybox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/skybox.c -------------------------------------------------------------------------------- /src/game/skybox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/skybox.h -------------------------------------------------------------------------------- /src/game/sound_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/sound_init.c -------------------------------------------------------------------------------- /src/game/sound_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/sound_init.h -------------------------------------------------------------------------------- /src/game/spawn_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/spawn_object.c -------------------------------------------------------------------------------- /src/game/spawn_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/spawn_object.h -------------------------------------------------------------------------------- /src/game/spawn_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/spawn_sound.c -------------------------------------------------------------------------------- /src/game/spawn_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/game/spawn_sound.h -------------------------------------------------------------------------------- /src/goddard/gd_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/gd_macros.h -------------------------------------------------------------------------------- /src/goddard/gd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/gd_main.c -------------------------------------------------------------------------------- /src/goddard/gd_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/gd_main.h -------------------------------------------------------------------------------- /src/goddard/gd_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/gd_math.c -------------------------------------------------------------------------------- /src/goddard/gd_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/gd_math.h -------------------------------------------------------------------------------- /src/goddard/gd_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/gd_memory.c -------------------------------------------------------------------------------- /src/goddard/gd_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/gd_memory.h -------------------------------------------------------------------------------- /src/goddard/gd_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/gd_types.h -------------------------------------------------------------------------------- /src/goddard/joints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/joints.c -------------------------------------------------------------------------------- /src/goddard/joints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/joints.h -------------------------------------------------------------------------------- /src/goddard/objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/objects.c -------------------------------------------------------------------------------- /src/goddard/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/objects.h -------------------------------------------------------------------------------- /src/goddard/old_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/old_menu.c -------------------------------------------------------------------------------- /src/goddard/old_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/old_menu.h -------------------------------------------------------------------------------- /src/goddard/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/particles.c -------------------------------------------------------------------------------- /src/goddard/particles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/particles.h -------------------------------------------------------------------------------- /src/goddard/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/renderer.c -------------------------------------------------------------------------------- /src/goddard/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/renderer.h -------------------------------------------------------------------------------- /src/goddard/sfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/sfx.c -------------------------------------------------------------------------------- /src/goddard/sfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/sfx.h -------------------------------------------------------------------------------- /src/goddard/skin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/skin.c -------------------------------------------------------------------------------- /src/goddard/skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/goddard/skin.h -------------------------------------------------------------------------------- /src/menu/file_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/menu/file_select.c -------------------------------------------------------------------------------- /src/menu/file_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/menu/file_select.h -------------------------------------------------------------------------------- /src/menu/ingame_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/menu/ingame_text.c -------------------------------------------------------------------------------- /src/menu/ingame_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/menu/ingame_text.h -------------------------------------------------------------------------------- /src/menu/intro_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/menu/intro_geo.c -------------------------------------------------------------------------------- /src/menu/intro_geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/menu/intro_geo.h -------------------------------------------------------------------------------- /src/menu/star_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/menu/star_select.c -------------------------------------------------------------------------------- /src/menu/star_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/menu/star_select.h -------------------------------------------------------------------------------- /src/pc/apparition.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/apparition.inc.c -------------------------------------------------------------------------------- /src/pc/chat_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/chat_commands.c -------------------------------------------------------------------------------- /src/pc/chat_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/chat_commands.h -------------------------------------------------------------------------------- /src/pc/cliopts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/cliopts.c -------------------------------------------------------------------------------- /src/pc/cliopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/cliopts.h -------------------------------------------------------------------------------- /src/pc/configfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/configfile.c -------------------------------------------------------------------------------- /src/pc/configfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/configfile.h -------------------------------------------------------------------------------- /src/pc/crash_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/crash_handler.c -------------------------------------------------------------------------------- /src/pc/crash_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/crash_handler.h -------------------------------------------------------------------------------- /src/pc/debug_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/debug_context.c -------------------------------------------------------------------------------- /src/pc/debug_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/debug_context.h -------------------------------------------------------------------------------- /src/pc/debuglog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/debuglog.h -------------------------------------------------------------------------------- /src/pc/dev/chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/dev/chat.c -------------------------------------------------------------------------------- /src/pc/dev/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/dev/chat.h -------------------------------------------------------------------------------- /src/pc/dialog_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/dialog_table.c -------------------------------------------------------------------------------- /src/pc/dialog_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/dialog_table.h -------------------------------------------------------------------------------- /src/pc/djui/djui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui.c -------------------------------------------------------------------------------- /src/pc/djui/djui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui.h -------------------------------------------------------------------------------- /src/pc/djui/djui_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_base.c -------------------------------------------------------------------------------- /src/pc/djui/djui_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_base.h -------------------------------------------------------------------------------- /src/pc/djui/djui_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_bind.c -------------------------------------------------------------------------------- /src/pc/djui/djui_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_bind.h -------------------------------------------------------------------------------- /src/pc/djui/djui_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_font.c -------------------------------------------------------------------------------- /src/pc/djui/djui_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_font.h -------------------------------------------------------------------------------- /src/pc/djui/djui_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_gfx.c -------------------------------------------------------------------------------- /src/pc/djui/djui_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_gfx.h -------------------------------------------------------------------------------- /src/pc/djui/djui_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_rect.c -------------------------------------------------------------------------------- /src/pc/djui/djui_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_rect.h -------------------------------------------------------------------------------- /src/pc/djui/djui_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_root.c -------------------------------------------------------------------------------- /src/pc/djui/djui_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_root.h -------------------------------------------------------------------------------- /src/pc/djui/djui_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_text.c -------------------------------------------------------------------------------- /src/pc/djui/djui_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/djui_text.h -------------------------------------------------------------------------------- /src/pc/djui/jp_glyphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/djui/jp_glyphs.h -------------------------------------------------------------------------------- /src/pc/fs/dirtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/fs/dirtree.c -------------------------------------------------------------------------------- /src/pc/fs/dirtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/fs/dirtree.h -------------------------------------------------------------------------------- /src/pc/fs/fmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/fs/fmem.c -------------------------------------------------------------------------------- /src/pc/fs/fmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/fs/fmem.h -------------------------------------------------------------------------------- /src/pc/fs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/fs/fs.c -------------------------------------------------------------------------------- /src/pc/fs/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/fs/fs.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_cc.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_cc.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_dummy.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_dummy.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_dxgi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_dxgi.cpp -------------------------------------------------------------------------------- /src/pc/gfx/gfx_dxgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_dxgi.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_opengl.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_opengl.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_pc.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_pc.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_sdl.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_sdl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_sdl1.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/gfx/gfx_sdl2.c -------------------------------------------------------------------------------- /src/pc/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/ini.c -------------------------------------------------------------------------------- /src/pc/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/ini.h -------------------------------------------------------------------------------- /src/pc/loading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/loading.c -------------------------------------------------------------------------------- /src/pc/loading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/loading.h -------------------------------------------------------------------------------- /src/pc/lua/smlua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/lua/smlua.c -------------------------------------------------------------------------------- /src/pc/lua/smlua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/lua/smlua.h -------------------------------------------------------------------------------- /src/pc/mini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mini.h -------------------------------------------------------------------------------- /src/pc/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mixer.c -------------------------------------------------------------------------------- /src/pc/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mixer.h -------------------------------------------------------------------------------- /src/pc/mods/mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mods/mod.c -------------------------------------------------------------------------------- /src/pc/mods/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mods/mod.h -------------------------------------------------------------------------------- /src/pc/mods/mod_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mods/mod_cache.c -------------------------------------------------------------------------------- /src/pc/mods/mod_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mods/mod_cache.h -------------------------------------------------------------------------------- /src/pc/mods/mod_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mods/mod_fs.cpp -------------------------------------------------------------------------------- /src/pc/mods/mod_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mods/mod_fs.h -------------------------------------------------------------------------------- /src/pc/mods/mods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mods/mods.c -------------------------------------------------------------------------------- /src/pc/mods/mods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mods/mods.h -------------------------------------------------------------------------------- /src/pc/mumble/mumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mumble/mumble.c -------------------------------------------------------------------------------- /src/pc/mumble/mumble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/mumble/mumble.h -------------------------------------------------------------------------------- /src/pc/nametags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/nametags.c -------------------------------------------------------------------------------- /src/pc/nametags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/nametags.h -------------------------------------------------------------------------------- /src/pc/pc_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/pc_main.c -------------------------------------------------------------------------------- /src/pc/pc_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/pc_main.h -------------------------------------------------------------------------------- /src/pc/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/platform.c -------------------------------------------------------------------------------- /src/pc/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/platform.h -------------------------------------------------------------------------------- /src/pc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/queue.h -------------------------------------------------------------------------------- /src/pc/rom_assets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/rom_assets.c -------------------------------------------------------------------------------- /src/pc/rom_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/rom_assets.h -------------------------------------------------------------------------------- /src/pc/rom_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/rom_checker.cpp -------------------------------------------------------------------------------- /src/pc/rom_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/rom_checker.h -------------------------------------------------------------------------------- /src/pc/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/thread.c -------------------------------------------------------------------------------- /src/pc/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/thread.h -------------------------------------------------------------------------------- /src/pc/update_checker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/update_checker.c -------------------------------------------------------------------------------- /src/pc/update_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/update_checker.h -------------------------------------------------------------------------------- /src/pc/utils/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/utils/json.hpp -------------------------------------------------------------------------------- /src/pc/utils/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/utils/md5.c -------------------------------------------------------------------------------- /src/pc/utils/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/utils/md5.h -------------------------------------------------------------------------------- /src/pc/utils/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/utils/misc.c -------------------------------------------------------------------------------- /src/pc/utils/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/src/pc/utils/misc.h -------------------------------------------------------------------------------- /text/define_text.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/text/define_text.inc.c -------------------------------------------------------------------------------- /text/us/courses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/text/us/courses.h -------------------------------------------------------------------------------- /text/us/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/text/us/dialogs.h -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/aifc_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/aifc_decode.c -------------------------------------------------------------------------------- /tools/apply_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/apply_patch.sh -------------------------------------------------------------------------------- /tools/assemble_sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/assemble_sound.py -------------------------------------------------------------------------------- /tools/calc_bss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/calc_bss.sh -------------------------------------------------------------------------------- /tools/clang-tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/clang-tidy.sh -------------------------------------------------------------------------------- /tools/clean_mapfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/clean_mapfile.py -------------------------------------------------------------------------------- /tools/cleancrcmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/cleancrcmap.py -------------------------------------------------------------------------------- /tools/convert_cake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/convert_cake.py -------------------------------------------------------------------------------- /tools/convert_skybox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/convert_skybox.py -------------------------------------------------------------------------------- /tools/create_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/create_patch.sh -------------------------------------------------------------------------------- /tools/decompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/decompress.py -------------------------------------------------------------------------------- /tools/hash_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/hash_file.cpp -------------------------------------------------------------------------------- /tools/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/hashtable.c -------------------------------------------------------------------------------- /tools/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/hashtable.h -------------------------------------------------------------------------------- /tools/libmio0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/libmio0.c -------------------------------------------------------------------------------- /tools/libmio0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/libmio0.h -------------------------------------------------------------------------------- /tools/mkzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/mkzip.py -------------------------------------------------------------------------------- /tools/n64cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/n64cksum.c -------------------------------------------------------------------------------- /tools/n64cksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/n64cksum.h -------------------------------------------------------------------------------- /tools/n64graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/n64graphics.c -------------------------------------------------------------------------------- /tools/n64graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/n64graphics.h -------------------------------------------------------------------------------- /tools/rasm2armips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/rasm2armips.py -------------------------------------------------------------------------------- /tools/revert_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/revert_patch.sh -------------------------------------------------------------------------------- /tools/rice_crcmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/rice_crcmap.txt -------------------------------------------------------------------------------- /tools/seq_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/seq_decoder.py -------------------------------------------------------------------------------- /tools/skyconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/skyconv.c -------------------------------------------------------------------------------- /tools/sm64tools.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/sm64tools.LICENSE -------------------------------------------------------------------------------- /tools/texrename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/texrename.py -------------------------------------------------------------------------------- /tools/textconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/textconv.c -------------------------------------------------------------------------------- /tools/unpak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/unpak.py -------------------------------------------------------------------------------- /tools/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/utf8.c -------------------------------------------------------------------------------- /tools/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/utf8.h -------------------------------------------------------------------------------- /tools/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/utils.c -------------------------------------------------------------------------------- /tools/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/utils.h -------------------------------------------------------------------------------- /tools/zeroterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/tools/zeroterm.py -------------------------------------------------------------------------------- /util.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/util.mk -------------------------------------------------------------------------------- /windows.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManIsCat2/sm64coopdx/HEAD/windows.ld --------------------------------------------------------------------------------