├── .clang-format ├── .clang-tidy ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .vscode └── c_cpp_properties.json ├── CODEOWNERS ├── Dockerfile ├── Makefile ├── Makefile.split ├── MakerButtons.blend ├── MakerButtons.blend1 ├── MakerCustomModels.blend ├── MakerCustomModels.blend1 ├── MakerTextures.blend ├── README.md ├── VERSION.txt ├── actors ├── BadgeSelect │ ├── header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── Hammerbro │ ├── anim_header.h │ ├── anims │ │ ├── anim_ArmatureAction.inc.c │ │ ├── anim_ArmatureAction_001.inc.c │ │ ├── anim_Throw.inc.c │ │ ├── anim_jumpanim.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── MysteryBadge │ ├── header.h │ └── model.inc.c ├── Rex │ ├── anim_header.h │ ├── anims │ │ ├── anim_Wander.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── amp │ ├── anim_header.h │ ├── anims │ │ ├── data.inc.c │ │ ├── normal.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── arrow │ ├── header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── b │ ├── header.h │ └── model.inc.c ├── b0 │ ├── header.h │ └── model.inc.c ├── b1 │ ├── header.h │ └── model.inc.c ├── b10 │ ├── header.h │ └── model.inc.c ├── b11 │ ├── header.h │ └── model.inc.c ├── b12 │ ├── header.h │ └── model.inc.c ├── b13 │ ├── header.h │ └── model.inc.c ├── b14 │ ├── header.h │ └── model.inc.c ├── b15 │ ├── header.h │ └── model.inc.c ├── b16 │ ├── header.h │ └── model.inc.c ├── b17 │ ├── header.h │ └── model.inc.c ├── b18 │ ├── header.h │ └── model.inc.c ├── b19 │ ├── header.h │ └── model.inc.c ├── b2 │ ├── header.h │ └── model.inc.c ├── b20 │ ├── header.h │ └── model.inc.c ├── b21 │ ├── header.h │ └── model.inc.c ├── b22 │ ├── header.h │ └── model.inc.c ├── b23 │ ├── header.h │ └── model.inc.c ├── b3 │ ├── header.h │ └── model.inc.c ├── b4 │ ├── header.h │ └── model.inc.c ├── b5 │ ├── header.h │ └── model.inc.c ├── b6 │ ├── header.h │ └── model.inc.c ├── b7 │ ├── header.h │ └── model.inc.c ├── b8 │ ├── header.h │ └── model.inc.c ├── b9 │ ├── header.h │ └── model.inc.c ├── bE │ ├── header.h │ └── model.inc.c ├── badge │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── bigpainting2 │ ├── header.h │ └── model.inc.c ├── billmask │ ├── geo.inc.c │ ├── geo_header.h │ └── 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 ├── blaster │ ├── collision.inc.c │ ├── collision_header.h │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── blue_coin_switch │ ├── BCS_Bottom.rgba16.png │ ├── collision.inc.c │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── blue_fish │ ├── anims │ │ ├── anim_0301C298.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bobomb │ ├── anim_header.h │ ├── anims │ │ ├── anim_struggling.inc.c │ │ ├── anim_walking.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── bomb │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── boo │ ├── geo.inc.c │ ├── geo_header.h │ └── 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 │ ├── geo_header.h │ └── model.inc.c ├── bowser │ ├── anim_header.h │ ├── anims │ │ ├── anim_Broken.inc.c │ │ ├── anim_Dance.inc.c │ │ ├── anim_Edge move.inc.c │ │ ├── anim_Edge stop.inc.c │ │ ├── anim_Fall down.inc.c │ │ ├── anim_Fire breath quick.inc.c │ │ ├── anim_Fire breath up.inc.c │ │ ├── anim_Fire breath.inc.c │ │ ├── anim_Flip down.inc.c │ │ ├── anim_Flip.inc.c │ │ ├── anim_Grabbed.inc.c │ │ ├── anim_Idle.inc.c │ │ ├── anim_Jump start.inc.c │ │ ├── anim_Jump stop.inc.c │ │ ├── anim_Jump.inc.c │ │ ├── anim_Lay down.inc.c │ │ ├── anim_Look down stop walk.inc.c │ │ ├── anim_Look up start walk.inc.c │ │ ├── anim_Run slip.inc.c │ │ ├── anim_Run start.inc.c │ │ ├── anim_Run stop.inc.c │ │ ├── anim_Run.inc.c │ │ ├── anim_Shaking.inc.c │ │ ├── anim_Slow gait.inc.c │ │ ├── anim_Stand up from flip.inc.c │ │ ├── anim_Stand up.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── flames_data.inc.c │ ├── geo.inc.c │ ├── geo_header.h │ └── 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 │ ├── geo.inc.c │ └── model.inc.c ├── breakable_box │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── breath_meter │ ├── breath_meter_five_segments.rgba16.png │ ├── breath_meter_four_segments.rgba16.png │ ├── breath_meter_full.rgba16.png │ ├── breath_meter_left_side.rgba16.png │ ├── breath_meter_one_segment.rgba16.png │ ├── breath_meter_right_side.rgba16.png │ ├── breath_meter_seven_segments.rgba16.png │ ├── breath_meter_six_segments.rgba16.png │ ├── breath_meter_three_segments.rgba16.png │ ├── breath_meter_two_segments.rgba16.png │ └── model.inc.c ├── bs_bar │ ├── header.h │ └── model.inc.c ├── bs_hud │ ├── header.h │ └── 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 │ ├── checkerboard_platform_side_custom.rgba16.png │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── chicken │ ├── anim_header.h │ ├── anims │ │ ├── anim_ArmatureAction.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── 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 ├── cobie2 │ ├── anim_header.h │ ├── anims │ │ ├── anim_ArmatureAction.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── coin │ ├── coin_0.ia8.png │ ├── coin_22_5.ia8.png │ ├── coin_45.ia8.png │ ├── coin_67_5.ia8.png │ ├── coin_90.ia8.png │ ├── coin_front.ia8.png │ ├── coin_side.ia8.png │ ├── coin_tilt_left.ia8.png │ ├── coin_tilt_right.ia8.png │ ├── geo.inc.c │ └── model.inc.c ├── common0.c ├── common0.h ├── common0_geo.c ├── common1.c ├── common1.h ├── common1_geo.c ├── conveyor │ ├── collision.inc.c │ ├── collision_header.h │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── conveyor_dslope │ ├── collision.inc.c │ ├── collision_header.h │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── conveyor_half │ ├── collision.inc.c │ ├── collision_header.h │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── conveyor_slope │ ├── collision.inc.c │ ├── collision_header.h │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── cosmic_spike │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── crab │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── crab_anims │ ├── anim_header.h │ └── anims │ │ ├── anim_ArmatureAction.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c ├── crowbar │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── cyan_fish │ ├── anims │ │ ├── anim_0600E24C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── dcoin │ ├── geo.inc.c │ ├── geo_header.h │ └── 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 │ ├── collision.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 ├── egg │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── evil_mario │ ├── anim_header.h │ └── anims │ │ ├── anim_convulse.inc.c │ │ ├── anim_gangnam.inc.c │ │ ├── anim_mario_geoAction.inc.c │ │ ├── anim_mario_geoAction_001.inc.c │ │ ├── anim_mario_geoAction_evilwalk.inc.c │ │ ├── anim_mario_geoAction_fallover.inc.c │ │ ├── anim_mario_geoAction_kick.inc.c │ │ ├── anim_mario_geoAction_spin.inc.c │ │ ├── anim_mario_thow.inc.c │ │ ├── anim_mario_windup.inc.c │ │ ├── anim_sm64_anim_002.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c ├── exclamation_box │ ├── exclamation_box_front.rgba16.png │ ├── exclamation_box_side.rgba16.png │ ├── geo.inc.c │ ├── metal_cap_box_front.rgba16.png │ ├── metal_cap_box_side.rgba16.png │ ├── model.inc.c │ ├── question_box_custom.rgba16.png │ ├── vanish_cap_box_front.rgba16.png │ ├── vanish_cap_box_side.rgba16.png │ ├── wing_cap_box_front.rgba16.png │ └── wing_cap_box_side.rgba16.png ├── exclamation_box_outline │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── executive_ │ ├── header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── executive_loom_ │ ├── header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── 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 ├── eyerok_col │ └── collision.inc.c ├── fatplat │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── flame │ ├── geo.inc.c │ └── model.inc.c ├── flyguy │ ├── anims │ │ ├── anim_08011A4C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── flyguy_face.custom.rgba16.png │ ├── geo.inc.c │ └── model.inc.c ├── fwoosh │ ├── geo.inc.c │ └── model.inc.c ├── girl │ ├── anim_header.h │ └── anims │ │ ├── anim_Armature_001Action.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c ├── goomba │ ├── anims │ │ ├── anim_0801DA34.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── custom_floomba_face.rgba16.png │ ├── custom_floomba_face_blink.rgba16.png │ ├── geo.inc.c │ └── model.inc.c ├── gooner │ ├── collision.inc.c │ ├── collision_header.h │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── grindel │ ├── 5.rgba16.png │ ├── 6.rgba16.png │ ├── bob.rgba16.png │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── group0.c ├── group0.h ├── group0_geo.c ├── group14.c ├── group14.h ├── group14_geo.c ├── group17.c ├── group17.h ├── group17_geo.c ├── hammer │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.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 ├── ico_badge │ ├── header.h │ └── model.inc.c ├── ico_heart │ ├── header.h │ └── model.inc.c ├── ico_mana │ ├── header.h │ └── model.inc.c ├── imbue │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── imbuec │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── imbues │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── imbuet │ ├── geo.inc.c │ ├── geo_header.h │ └── 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 ├── lev_edge │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── loopingp │ ├── collision.inc.c │ ├── collision_header.h │ ├── 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 ├── maker │ ├── header.h │ ├── minecrafttex.inc.c │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── manta │ ├── anims │ │ ├── anim_05008CFC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── mario │ ├── geo.inc.c │ ├── geo_header.h │ ├── mario_eyes_center.rgba16.png │ ├── mario_eyes_closed.rgba16.png │ ├── mario_eyes_closed_unused_0.rgba16.png │ ├── mario_eyes_closed_unused_1.rgba16.png │ ├── mario_eyes_dead.rgba16.png │ ├── mario_eyes_down_unused.rgba16.png │ ├── mario_eyes_half_closed.rgba16.png │ ├── mario_eyes_left_unused.rgba16.png │ ├── mario_eyes_right_unused.rgba16.png │ ├── mario_eyes_up_unused.rgba16.png │ ├── mario_logo.rgba16.png │ ├── mario_metal.rgba16.png │ ├── mario_metal_wing_tip_unused.rgba16.png │ ├── mario_metal_wing_unused.rgba16.png │ ├── mario_mustache.rgba16.png │ ├── mario_overalls_button.rgba16.png │ ├── mario_sideburn.rgba16.png │ ├── mario_wing.rgba16.png │ ├── mario_wing_tip.rgba16.png │ └── model.inc.c ├── mario_btcm │ ├── anim_header.h │ ├── anims │ │ ├── anim_mario_idle.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── mario_cap │ ├── geo.inc.c │ └── model.inc.c ├── metal_box │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── metal_crate │ ├── collision.inc.c │ ├── collision_header.h │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── metalstar │ ├── geo.inc.c │ ├── model.inc.c │ └── star_eye.rgba16.png ├── 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 ├── mm_btn │ ├── header.h │ └── model.inc.c ├── moleman3 │ ├── anim_header.h │ ├── anims │ │ ├── anim_ArmatureAction.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ ├── geo_header.h │ └── 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 ├── motos │ ├── anims │ │ └── anim.inc.c │ ├── geo.inc.c │ ├── header.h │ └── 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 ├── new_cull_marker │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── noteblock │ ├── collision.inc.c │ ├── collision_header.h │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── null_anims │ ├── anim_header.h │ └── anims │ │ ├── anim_Armature_001Action.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c ├── number │ └── geo.inc.c ├── ocean_ttc │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── onoffblock │ ├── collision.inc.c │ └── collision_header.h ├── onoffblock1 │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── onoffblock2 │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── onoffbutton │ ├── collision.inc.c │ ├── collision_header.h │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── onoffswitch │ ├── geo.inc.c │ ├── geo_header.h │ └── model.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 ├── podoboo │ ├── geo.inc.c │ ├── geo_header.h │ └── 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 │ ├── PurpleBottom.rgba16.png │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── quest │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── rb_bar │ ├── header.h │ └── model.inc.c ├── rb_hud │ ├── header.h │ └── model.inc.c ├── rfbox │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── ring │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── rocket_boot │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── rotating_block_fire_bars │ ├── 8.rgba16.png │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── sand │ └── model.inc.c ├── sb_cube │ ├── geo.inc.c │ ├── geo_header.h │ └── 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 ├── shopgui │ ├── header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── shopselect │ ├── header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── showrunner │ ├── anim_header.h │ ├── anims │ │ ├── anim_Idle.inc.c │ │ ├── anim_Spike.inc.c │ │ ├── anim_back_away.inc.c │ │ ├── anim_ballerina.inc.c │ │ ├── anim_block.inc.c │ │ ├── anim_dead.inc.c │ │ ├── anim_hurt.inc.c │ │ ├── anim_shocked.inc.c │ │ ├── anim_showrunner_caneslap.inc.c │ │ ├── anim_showrunner_facepalm.inc.c │ │ ├── anim_showrunner_facepalm2.inc.c │ │ ├── anim_showrunner_float.inc.c │ │ ├── anim_showrunner_sit.inc.c │ │ ├── anim_suspended.inc.c │ │ ├── anim_wind_up.inc.c │ │ ├── anim_yipee.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── 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 ├── small_water_splash │ ├── geo.inc.c │ └── model.inc.c ├── smoke │ └── model.inc.c ├── snakeblock │ ├── collision.inc.c │ └── collision_header.h ├── snakeblock1 │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── snakeblock2 │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── snakeblock3 │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── 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 ├── spawn │ ├── geo.inc.c │ ├── geo_header.h │ ├── header.h │ └── 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 ├── spooner │ ├── collision.inc.c │ ├── collision_header.h │ ├── geo.inc.c │ ├── geo_header.h │ ├── header.h │ └── model.inc.c ├── spotlight │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── springboard │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── srball_1 │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── srball_2 │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── srspike │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── star │ ├── custom_metalstartex.rgba16.png │ ├── 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 │ ├── custom_LowResTransscreen.rgba16.png │ ├── geo.inc.c │ └── model.inc.c ├── timedbox │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── title │ ├── LowResTransscreen.rgba16.png │ ├── header.h │ └── 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 ├── token │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── top │ ├── header.h │ └── model.inc.c ├── tornado │ ├── geo.inc.c │ └── model.inc.c ├── transparent_star │ ├── geo.inc.c │ └── model.inc.c ├── treasure_chest │ ├── geo.inc.c │ └── model.inc.c ├── tree │ ├── deadl.rgba16.png │ ├── deadr.rgba16.png │ ├── geo.inc.c │ ├── model.inc.c │ ├── palm_tree.rgba16.png │ ├── pine_tree.rgba16.png │ ├── snowy_pine_tree.rgba16.png │ ├── spiky_tree.rgba16.png │ ├── tree_left_side.rgba16.png │ └── tree_right_side.rgba16.png ├── tvcorpse │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── tvhead │ ├── anim_header.h │ ├── anims │ │ ├── anim_TV_001Action.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── collision.inc.c │ ├── collision_header.h │ ├── geo.inc.c │ ├── geo_header.h │ ├── model.inc.c │ ├── texscroll.inc.c │ └── texscroll.inc.h ├── uiCorner │ ├── header.h │ └── model.inc.c ├── uibutton │ ├── header.h │ └── model.inc.c ├── uibutton2 │ ├── header.h │ └── 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 ├── vanetalc │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── vanilla_exclamation_box │ ├── exclamation_box_front.rgba16.png │ ├── exclamation_box_side.rgba16.png │ ├── geo.inc.c │ ├── metal_cap_box_front.rgba16.png │ ├── metal_cap_box_side.rgba16.png │ ├── model.inc.c │ ├── vanish_cap_box_front.rgba16.png │ ├── vanish_cap_box_side.rgba16.png │ ├── wing_cap_box_front.rgba16.png │ └── wing_cap_box_side.rgba16.png ├── walk_smoke │ ├── geo.inc.c │ └── model.inc.c ├── wallet │ ├── geo.inc.c │ ├── geo_header.h │ └── model.inc.c ├── warp_pipe │ ├── collision.inc.c │ ├── geo.inc.c │ ├── model.inc.c │ └── warp_pipe_side.custom.rgba16.png ├── water_bubble │ ├── geo.inc.c │ └── model.inc.c ├── water_level_diamond │ ├── collision.inc.c │ ├── custom_2.rgba16.png │ ├── 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 ├── woodplat │ ├── collision.inc.c │ ├── collision_header.h │ ├── geo.inc.c │ ├── geo_header.h │ └── 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 ├── asm.txt ├── asm ├── debug │ └── map.s ├── entry.s ├── fcr31.s ├── ipl3.s ├── n64_assert.s ├── rom_header.s ├── round.s └── vc_bin.s ├── 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 ├── bin ├── debug_level_select.c ├── effect.c ├── segment2.c ├── title_screen_bg.c └── vc │ ├── osEepStatusVC.bin │ ├── osEepromReadVC.bin │ └── osEepromWriteVC.bin ├── compile_flags.txt ├── compression ├── gziprules.mk ├── lz4trules.mk ├── mio0rules.mk ├── rnc1rules.mk ├── rnc2rules.mk ├── uncomprules.mk └── yay0rules.mk ├── data ├── bad_apple_data.c ├── behavior_data.c ├── capcom.hvqm └── capcom.s ├── doxygen └── logo.png ├── enhancements ├── puppycam_angles.inc.c └── reonucam.patch ├── extract_assets.py ├── fast64.json ├── include ├── behavior_data.h ├── color_presets.h ├── command_macros_base.h ├── config.h ├── config │ ├── config_audio.h │ ├── config_benchmark.h │ ├── config_camera.h │ ├── config_collision.h │ ├── config_cutscenes.h │ ├── config_debug.h │ ├── config_game.h │ ├── config_goddard.h │ ├── config_graphics.h │ ├── config_menu.h │ ├── config_movement.h │ ├── config_objects.h │ ├── config_rom.h │ ├── config_safeguards.h │ └── config_world.h ├── course_table.h ├── eu_translation.h ├── farcall.h ├── float.h ├── geo_commands.h ├── gfx_dimensions.h ├── helper_macros.h ├── hvqm │ ├── HVQM2File.h │ ├── HVQmd.h │ ├── adpcmdec.h │ └── hvqm2dec.h ├── ique │ ├── PR │ │ ├── PRimage.h │ │ ├── R4300.h │ │ ├── abi.h │ │ ├── audiotools.h │ │ ├── bbfs.h │ │ ├── bbfs_export.h │ │ ├── bbskapi.h │ │ ├── bbskapi_export.h │ │ ├── dbgdefs.h │ │ ├── dbgproto.h │ │ ├── driverd.h │ │ ├── em.h │ │ ├── gbi-poslight.h │ │ ├── gbi.h │ │ ├── gs2dex.h │ │ ├── gt.h │ │ ├── gtoff.h │ │ ├── gu.h │ │ ├── gzsort.h │ │ ├── leo.h │ │ ├── leoappli.h │ │ ├── leosp.h │ │ ├── libaudio.h │ │ ├── mbi.h │ │ ├── n_libaudio.h │ │ ├── n_libaudio_s_to_n.h │ │ ├── os.h │ │ ├── os_ai.h │ │ ├── os_bb.h │ │ ├── os_bb_export.h │ │ ├── os_bbcard.h │ │ ├── os_bbexec.h │ │ ├── os_bbexec_export.h │ │ ├── os_bbfs.h │ │ ├── os_bbfs_export.h │ │ ├── os_cache.h │ │ ├── os_cont.h │ │ ├── os_convert.h │ │ ├── os_debug.h │ │ ├── os_eeprom.h │ │ ├── os_error.h │ │ ├── os_exception.h │ │ ├── os_flash.h │ │ ├── os_gbpak.h │ │ ├── os_gio.h │ │ ├── os_host.h │ │ ├── os_internal.h │ │ ├── os_internal_debug.h │ │ ├── os_internal_error.h │ │ ├── os_internal_exception.h │ │ ├── os_internal_gio.h │ │ ├── os_internal_host.h │ │ ├── os_internal_reg.h │ │ ├── os_internal_rsp.h │ │ ├── os_internal_si.h │ │ ├── os_internal_thread.h │ │ ├── os_internal_tlb.h │ │ ├── os_libc.h │ │ ├── os_message.h │ │ ├── os_motor.h │ │ ├── os_pfs.h │ │ ├── os_pi.h │ │ ├── os_rdp.h │ │ ├── os_reg.h │ │ ├── os_rsp.h │ │ ├── os_si.h │ │ ├── os_system.h │ │ ├── os_thread.h │ │ ├── os_time.h │ │ ├── os_tlb.h │ │ ├── os_usb.h │ │ ├── os_version.h │ │ ├── os_vi.h │ │ ├── os_voice.h │ │ ├── ramrom.h │ │ ├── rcp.h │ │ ├── rdb.h │ │ ├── region.h │ │ ├── rmon.h │ │ ├── rsp.h │ │ ├── rsp_ipc.h │ │ ├── sched.h │ │ ├── sp.h │ │ ├── sptask.h │ │ ├── sptaskoff.h │ │ ├── trace.h │ │ ├── ucode.h │ │ ├── ucode_debug.h │ │ ├── ultraerror.h │ │ ├── ultralog.h │ │ ├── ultratypes.h │ │ ├── uportals.h │ │ └── verify.h │ └── ultra64.h ├── level_commands.h ├── level_misc_macros.h ├── level_table.h ├── libc │ ├── math.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ └── string.h ├── macros.h ├── macros.inc ├── make_const_nonconst.h ├── mario_animation_ids.h ├── mario_geo_switch_case_ids.h ├── model_ids.h ├── n64 │ ├── PR │ │ ├── PRimage.h │ │ ├── R4300.h │ │ ├── abi.h │ │ ├── gbi-poslight.h │ │ ├── gbi.h │ │ ├── gs2dex.h │ │ ├── gt.h │ │ ├── gtoff.h │ │ ├── gu.h │ │ ├── gzsort.h │ │ ├── leo.h │ │ ├── leoappli.h │ │ ├── libaudio.h │ │ ├── mbi.h │ │ ├── n_libaudio.h │ │ ├── n_libaudio_s_to_n.h │ │ ├── os.h │ │ ├── os_ai.h │ │ ├── os_cache.h │ │ ├── os_cont.h │ │ ├── os_convert.h │ │ ├── os_debug.h │ │ ├── os_eeprom.h │ │ ├── os_error.h │ │ ├── os_exception.h │ │ ├── os_flash.h │ │ ├── os_gbpak.h │ │ ├── os_gio.h │ │ ├── os_host.h │ │ ├── os_internal.h │ │ ├── os_internal_debug.h │ │ ├── os_internal_error.h │ │ ├── os_internal_exception.h │ │ ├── os_internal_gio.h │ │ ├── os_internal_host.h │ │ ├── os_internal_reg.h │ │ ├── os_internal_rsp.h │ │ ├── os_internal_si.h │ │ ├── os_internal_thread.h │ │ ├── os_internal_tlb.h │ │ ├── os_libc.h │ │ ├── os_message.h │ │ ├── os_motor.h │ │ ├── os_pfs.h │ │ ├── os_pi.h │ │ ├── os_rdp.h │ │ ├── os_reg.h │ │ ├── os_rsp.h │ │ ├── os_si.h │ │ ├── os_system.h │ │ ├── os_thread.h │ │ ├── os_time.h │ │ ├── os_tlb.h │ │ ├── os_version.h │ │ ├── os_vi.h │ │ ├── os_voice.h │ │ ├── ramrom.h │ │ ├── rcp.h │ │ ├── rdb.h │ │ ├── region.h │ │ ├── rmon.h │ │ ├── rsp.h │ │ ├── rsp_ipc.h │ │ ├── sched.h │ │ ├── sp.h │ │ ├── sptask.h │ │ ├── sptaskoff.h │ │ ├── trace.h │ │ ├── ucode.h │ │ ├── ucode_debug.h │ │ ├── ultraerror.h │ │ ├── ultralog.h │ │ ├── ultratypes.h │ │ └── uportals.h │ └── ultra64.h ├── object_constants.h ├── object_fields.h ├── platform_info.h ├── prevent_bss_reordering.h ├── rnc.h ├── segment_names.h ├── segment_symbols.h ├── segments.h ├── seq_ids.h ├── seq_macros.inc ├── sm64.h ├── sounds.h ├── surface_terrains.h ├── textures.h └── types.h ├── layout.json ├── levels ├── bob │ ├── Map1 │ │ ├── header.h │ │ ├── model.inc.c │ │ ├── texscroll.inc.c │ │ └── texscroll.inc.h │ ├── area_1 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ ├── macro.inc.c │ │ └── spline.inc.c │ ├── geo.c │ ├── geo.inc.c │ ├── header.h │ ├── header.inc.h │ ├── kingbully │ │ ├── geo.inc.c │ │ ├── geo_header.h │ │ └── model.inc.c │ ├── level.yaml │ ├── leveldata.c │ ├── leveldata.inc.c │ ├── maker2 │ │ ├── header.h │ │ └── model.inc.c │ ├── model.inc.c │ ├── script.c │ ├── shard │ │ ├── geo.inc.c │ │ ├── geo_header.h │ │ └── model.inc.c │ ├── shock │ │ ├── geo.inc.c │ │ ├── geo_header.h │ │ └── model.inc.c │ └── texture.inc.c ├── course_defines.h ├── entry.c ├── entry.h ├── intro │ ├── geo.c │ ├── header.h │ ├── leveldata.c │ ├── made_with_hackersm64.custom.i4.png │ ├── made_with_hackersm64.custom.rgba16.png │ ├── script.c │ ├── tm.custom.i4.png │ ├── ts1 │ │ ├── header.h │ │ └── model.inc.c │ ├── ts2 │ │ ├── header.h │ │ └── model.inc.c │ ├── ts3 │ │ ├── header.h │ │ └── model.inc.c │ └── ts4 │ │ ├── header.h │ │ └── model.inc.c ├── level_defines.h ├── level_headers.h.in ├── level_rules.mk ├── menu │ ├── bigpainting │ │ ├── header.h │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── leveldata.c │ ├── mbg │ │ ├── geo.inc.c │ │ ├── geo_header.h │ │ └── model.inc.c │ └── script.c ├── scripts.c └── scripts.h ├── lib ├── PR │ ├── audio │ │ ├── aspMain.bin │ │ ├── aspMain_data.bin │ │ └── n_aspMain.o │ ├── f3dex │ │ └── fifo │ │ │ ├── gspF3DEX.NoN.fifo.o │ │ │ ├── gspF3DEX.fifo.o │ │ │ ├── gspF3DLP.Rej.fifo.o │ │ │ ├── gspF3DLX.NoN.fifo.o │ │ │ ├── gspF3DLX.Rej.fifo.o │ │ │ ├── gspF3DLX.fifo.o │ │ │ └── gspL3DEX.fifo.o │ ├── f3dex2 │ │ ├── fifo │ │ │ ├── gspF3DEX2.NoN.fifo.o │ │ │ ├── gspF3DEX2.Rej.fifo.o │ │ │ ├── gspF3DEX2.fifo.o │ │ │ ├── gspF3DLX2.Rej.fifo.o │ │ │ └── gspL3DEX2.fifo.o │ │ └── xbus │ │ │ ├── gspF3DEX2.NoN.xbus.o │ │ │ ├── gspF3DEX2.Rej.xbus.o │ │ │ ├── gspF3DEX2.xbus.o │ │ │ ├── gspF3DLX2.Rej.xbus.o │ │ │ └── gspL3DEX2.xbus.o │ ├── f3dex2pl │ │ └── fifo │ │ │ ├── F3DEX2_PosLight.bin │ │ │ └── F3DEX2_PosLight_data.bin │ ├── f3dzex │ │ ├── fifo │ │ │ ├── F3DZEX.bin │ │ │ ├── F3DZEX_NoN.bin │ │ │ ├── F3DZEX_NoN_data.bin │ │ │ ├── F3DZEX_data.bin │ │ │ ├── L3DZEX.bin │ │ │ └── L3DZEX_data.bin │ │ └── xbus │ │ │ ├── F3DZEX.bin │ │ │ ├── F3DZEX_NoN.bin │ │ │ ├── F3DZEX_NoN_data.bin │ │ │ ├── F3DZEX_data.bin │ │ │ ├── L3DZEX.bin │ │ │ └── L3DZEX_data.bin │ ├── hvqm │ │ ├── hvqm2sp1.o │ │ └── hvqm2sp2.o │ ├── s2dex │ │ ├── fifo │ │ │ └── gspS2DEX.fifo.o │ │ └── fifo_d │ │ │ └── gspS2DEX.fifo_d.o │ ├── s2dex2 │ │ ├── fifo │ │ │ ├── gspS2DEX2.fifo.o │ │ │ └── gspS2DEX2d.fifo.o │ │ └── xbus │ │ │ ├── gspS2DEX2.xbus.o │ │ │ └── gspS2DEX2d.xbus.o │ └── super3d │ │ └── fifo │ │ └── gspSuper3D.o ├── aspMain.s ├── gcclib │ ├── divbreak │ │ └── libgcc.a │ ├── nocheck │ │ └── libgcc.a │ └── trap │ │ └── libgcc.a ├── gspF3DEX2_PosLight.fifo.s ├── gspF3DZEX2.NoN_PosLight.fifo.s ├── gspF3DZEX2_PosLight.fifo.s ├── gspL3DZEX2_PosLight.fifo.s ├── ique │ ├── libultra.a │ ├── libultra_d.a │ └── libultra_rom.a ├── libhvqm2.a ├── libnustd.a ├── librtc │ ├── librtc.c │ └── librtc.h ├── n64 │ ├── libultra.a │ ├── libultra_d.a │ └── libultra_rom.a ├── rsp.old └── rspboot.o ├── rsp ├── audio.s └── rsp_defs.inc ├── rspdata.inc.ld ├── rsptext.inc.ld ├── sm64.ld ├── sound ├── README.md ├── samples │ ├── instruments │ │ ├── custom_12.5_high.aiff │ │ ├── custom_12.5_low.aiff │ │ ├── custom_12.5_mid.aiff │ │ ├── custom_25_high.aiff │ │ ├── custom_25_low.aiff │ │ ├── custom_25_mid.aiff │ │ ├── custom_50_high.aiff │ │ ├── custom_50_low.aiff │ │ ├── custom_50_mid.aiff │ │ ├── custom_bowser_organ.aiff │ │ ├── custom_bowser_organ_lq.aiff │ │ ├── custom_noise_3.aiff │ │ ├── custom_noise_6.aiff │ │ ├── custom_noise_C.aiff │ │ ├── custom_smb3_castle_timpani.aiff │ │ ├── custom_tri_high.aiff │ │ ├── custom_tri_low.aiff │ │ └── custom_tri_mid.aiff │ ├── sfx_5 │ │ └── motos.aiff │ ├── sfx_mario_peach │ │ ├── 0F_peach_mario.aiff │ │ ├── 10_peach_power_of_the_stars.aiff │ │ ├── 13_peach_something_special.aiff │ │ └── 14_peach_bake_a_cake.aiff │ └── streamed_audio │ │ ├── custom_rain_inside.aiff │ │ └── custom_rain_outside.aiff ├── sequences.json ├── sequences │ ├── 00_sound_player.s │ ├── jp │ │ ├── 01_cutscene_collect_star.m64 │ │ ├── 02_menu_title_screen.m64 │ │ ├── 03_level_grass.m64 │ │ ├── 04_level_inside_castle.m64 │ │ ├── 05_level_water.m64 │ │ ├── 06_level_hot.m64 │ │ ├── 07_level_boss_koopa.m64 │ │ ├── 08_level_snow.m64 │ │ ├── 09_level_slide.m64 │ │ ├── 0A_level_spooky.m64 │ │ ├── 0B_event_piranha_plant.m64 │ │ ├── 0C_level_underground.m64 │ │ ├── 0D_menu_star_select.m64 │ │ ├── 0E_event_powerup.m64 │ │ ├── 0F_event_metal_cap.m64 │ │ ├── 10_event_koopa_message.m64 │ │ ├── 11_level_koopa_road.m64 │ │ ├── 12_event_high_score.m64 │ │ ├── 13_event_merry_go_round.m64 │ │ ├── 14_event_race.m64 │ │ ├── 15_cutscene_star_spawn.m64 │ │ ├── 16_event_boss.m64 │ │ ├── 17_cutscene_collect_key.m64 │ │ ├── 18_event_endless_stairs.m64 │ │ ├── 19_level_boss_koopa_final.m64 │ │ ├── 1A_cutscene_credits.m64 │ │ ├── 1B_event_solve_puzzle.m64 │ │ ├── 1C_event_toad_message.m64 │ │ ├── 1D_event_peach_message.m64 │ │ ├── 1E_cutscene_intro.m64 │ │ ├── 1F_cutscene_victory.m64 │ │ ├── 20_cutscene_ending.m64 │ │ └── 21_menu_file_select.m64 │ └── us │ │ ├── 01_cutscene_collect_star.m64 │ │ ├── 02_menu_title_screen.m64 │ │ ├── 03_level_grass.m64 │ │ ├── 04_level_inside_castle.m64 │ │ ├── 05_level_water.m64 │ │ ├── 06_level_hot.m64 │ │ ├── 07_level_boss_koopa.m64 │ │ ├── 08_level_snow.m64 │ │ ├── 09_level_slide.m64 │ │ ├── 0A_level_spooky.m64 │ │ ├── 0B_event_piranha_plant.m64 │ │ ├── 0C_level_underground.m64 │ │ ├── 0D_menu_star_select.m64 │ │ ├── 0E_event_powerup.m64 │ │ ├── 0F_event_metal_cap.m64 │ │ ├── 10_event_koopa_message.m64 │ │ ├── 11_level_koopa_road.m64 │ │ ├── 12_event_high_score.m64 │ │ ├── 13_event_merry_go_round.m64 │ │ ├── 14_event_race.m64 │ │ ├── 15_cutscene_star_spawn.m64 │ │ ├── 16_event_boss.m64 │ │ ├── 17_cutscene_collect_key.m64 │ │ ├── 18_event_endless_stairs.m64 │ │ ├── 19_level_boss_koopa_final.m64 │ │ ├── 1A_cutscene_credits.m64 │ │ ├── 1B_event_solve_puzzle.m64 │ │ ├── 1C_event_toad_message.m64 │ │ ├── 1D_event_peach_message.m64 │ │ ├── 1E_event_powerup_shell.m64 │ │ ├── 1F_cutscene_victory.m64 │ │ ├── 20_cutscene_ending.m64 │ │ ├── 21_menu_file_select.m64 │ │ ├── 22_cutscene_lakitu.m64 │ │ ├── 23_level_inside_castle.m64 │ │ ├── 24_custom_bonearena.m64 │ │ ├── 25_farm.m64 │ │ ├── 26_pirate.m64 │ │ ├── 27_jungle.m64 │ │ ├── 28_redhot.m64 │ │ ├── 29_custom_rain_outside.m64 │ │ ├── 2A_custom_rain_inside.m64 │ │ ├── 2B_showrunner.m64 │ │ ├── 2C_cutscene_cosmic_seed.m64 │ │ ├── 2D_cosmic_seed_level.m64 │ │ ├── 2E_cosmic_seed_boss.m64 │ │ ├── 2F_smb1_overworld.m64 │ │ ├── 30_smb2_overworld.m64 │ │ ├── 31_smb3_castle.m64 │ │ ├── 32_nsmb_castle.m64 │ │ ├── 33_final_boss.m64 │ │ ├── 34_showrunner_boss.m64 │ │ ├── 35_bighouse.m64 │ │ ├── 36_level_koopa_road.m64 │ │ ├── 37_bk_bubblegloop_swamp.m64 │ │ ├── 38_bk_gobi_valley.m64 │ │ ├── 39_bm_black_fortress.m64 │ │ ├── 3A_dk64_frantic_factory.m64 │ │ ├── 3B_dk64_hideout_helm.m64 │ │ ├── 3C_rayman_band_land.m64 │ │ ├── 3D_pm_dry_desert.m64 │ │ ├── 3E_mlpit_behind_yoshi_village.m64 │ │ ├── 3F_yi_overworld.m64 │ │ ├── 40_dk64_fungi_forest.m64 │ │ ├── 41_ttyd_eight_key_domain.m64 │ │ ├── 42_ttyd_rogueport_sewers.m64 │ │ ├── 43_smg2_honeybloom.m64 │ │ ├── 44_pkmn_sky_tower.m64 │ │ ├── 45_smb3_overworld.m64 │ │ ├── 46_smrpg_marios_pad.m64 │ │ ├── 47_smrpg_sunken_ship.m64 │ │ ├── 48_smg_buoy_base.m64 │ │ ├── 49_dk64_crystal_caves.m64 │ │ ├── 4A_oot_lost_woods.m64 │ │ ├── 4B_smb_bowser_remix.m64 │ │ ├── 4C_smg_comet_observatory.m64 │ │ ├── 4D_bm_green_garden.m64 │ │ ├── 4E_smw_athletic.m64 │ │ ├── 4F_spm_flipside.m64 │ │ ├── 50_spm_floro_caverns.m64 │ │ ├── 51_ys_title.m64 │ │ ├── 52_oot_gerudo_valley.m64 │ │ ├── 53_tp_lake_hylia.m64 │ │ ├── 54_frappe_snowland.m64 │ │ ├── 55_forest_maze.m64 │ │ ├── 56_dk64_gloomy_galleon.m64 │ │ ├── 57_mk64_bowsers_castle.m64 │ │ ├── 58_koopa_beach.m64 │ │ ├── 59_mk64_rainbow_road.m64 │ │ ├── 5A_sammer_kingdom.m64 │ │ ├── 5B_smg_purple_comet.m64 │ │ ├── 5C_sms_sky_and_sea.m64 │ │ ├── 5D_stone_tower_temple.m64 │ │ ├── 5E_ww_outset_island.m64 │ │ ├── 5F_dkc2_snowbound_land.m64 │ │ ├── 60_smg_ghostly_galaxy.m64 │ │ ├── 61_smrpg_nimbus_land.m64 │ │ ├── 62_smg_battlerock.m64 │ │ ├── 63_sa_windy_hill.m64 │ │ ├── 64_spm_overthere_stair.m64 │ │ ├── 65_sms_secret_course.m64 │ │ ├── 66_sms_bianco_hills.m64 │ │ ├── 67_spm_lineland_road.m64 │ │ ├── 68_ttyd_xnaut_fortress.m64 │ │ ├── 69_bis_bumpsy_plains.m64 │ │ ├── 6A_mp_rainbow_castle.m64 │ │ ├── 6B_ss_skyloft.m64 │ │ ├── 6C_smw_castle.m64 │ │ ├── 6D_yi_crystal_caves.m64 │ │ ├── 6E_bk_freezeezy_peak.m64 │ │ ├── 6F_mkds_waluigi_pinball.m64 │ │ ├── 70_k64_factory_inspection.m64 │ │ ├── 71_dk_creepy_castle.m64 │ │ ├── 72_pm_forever_forest.m64 │ │ ├── 73_mk8_rainbow_road.m64 │ │ ├── 74_tp_gerudo_desert.m64 │ │ ├── 75_oot_kokiri_forest.m64 │ │ ├── 76_pit_gritzy_desert.m64 │ │ ├── 77_dk64_angry_aztec.m64 │ │ ├── 78_nsmb_desert.m64 │ │ ├── 79_touhou_youkai_mountain.m64 │ │ ├── 7A_bis_deep_castle.m64 │ │ ├── 7B_ttyd_petal_meadows.m64 │ │ ├── 7C_mp_yoshis_tropical_island.m64 │ │ ├── 7D_piranha_creek.m64 │ │ ├── 7E_forest_temple.m64 │ │ └── 7F_vanilla_boss.m64 ├── 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_extended_bank.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.json │ ├── 27.json │ ├── 28_streamed_audio.json │ ├── 29_smb1_overworld.json │ ├── 2A_smb2_overworld.json │ ├── 2B_smb3_castle.json │ ├── 2C_nsmb_castle.json │ └── 2D.json └── sound_data.s ├── 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 │ ├── load_sh.c │ ├── playback.c │ ├── playback.h │ ├── port_eu.c │ ├── port_sh.c │ ├── seqplayer.c │ ├── seqplayer.h │ ├── shindou_debug_prints.c │ ├── synthesis.c │ ├── synthesis.h │ ├── synthesis_sh.c │ └── volramping.c.in ├── boot │ ├── decompress.s │ ├── deflate │ │ ├── common_defs.h │ │ ├── decompress_template.h │ │ ├── deflate_constants.h │ │ ├── deflate_decompress.c │ │ ├── lib_common.h │ │ └── libdeflate.h │ ├── dma_async.c │ ├── dma_async.h │ ├── lz4t.c │ ├── lz4t.h │ ├── lz4t_fast.s │ ├── main.c │ ├── memory.c │ ├── rnc1.s │ ├── rnc2.s │ ├── slidec.h │ └── slidec.s ├── buffers │ ├── adpcmbuf.c │ ├── buffers.c │ ├── buffers.h │ ├── framebuffers.c │ ├── framebuffers.h │ ├── gfx_output_buffer.c │ ├── gfx_output_buffer.h │ ├── hvqbuf.c │ ├── hvqmwork.c │ ├── zbuffer.c │ └── zbuffer.h ├── engine │ ├── behavior_script.c │ ├── behavior_script.h │ ├── colors.c │ ├── colors.h │ ├── geo_layout.c │ ├── geo_layout.h │ ├── graph_node.c │ ├── graph_node.h │ ├── graph_node_manager.c │ ├── level_script.c │ ├── level_script.h │ ├── math_util.c │ ├── math_util.h │ ├── surface_collision.c │ ├── surface_collision.h │ ├── surface_load.c │ └── surface_load.h ├── game │ ├── _Ldtob.c │ ├── _Litob.c │ ├── _Printf.c │ ├── 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_falling_platform.inc.c │ │ ├── bowser_flame.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 │ │ ├── cosmic_phantasm.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 │ │ ├── edward.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 │ │ ├── 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 │ │ ├── motos.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 │ │ ├── phonograph.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 │ │ ├── respawner.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 │ │ ├── snake.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 │ │ ├── swoop.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 │ │ ├── worm.inc.c │ │ └── yoshi.inc.c │ ├── camera.c │ ├── camera.h │ ├── crash_screen.c │ ├── debug.c │ ├── debug.h │ ├── debug_box.c │ ├── debug_box.h │ ├── emutest.c │ ├── emutest.h │ ├── emutest_vc.c │ ├── emutest_vc.h │ ├── envfx_bubbles.c │ ├── envfx_bubbles.h │ ├── envfx_snow.c │ ├── envfx_snow.h │ ├── farcall_helpers.h │ ├── fasttext.c │ ├── fasttext.h │ ├── game_init.c │ ├── game_init.h │ ├── gamecube_controller.c │ ├── geo_misc.c │ ├── geo_misc.h │ ├── hud.c │ ├── hud.h │ ├── ingame_menu.c │ ├── ingame_menu.h │ ├── insn_disasm.c │ ├── interaction.c │ ├── interaction.h │ ├── level_geo.c │ ├── level_geo.h │ ├── level_update.c │ ├── level_update.h │ ├── main.h │ ├── map_parser.c │ ├── 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 │ ├── materials.c │ ├── materials.h │ ├── mem_error_screen.c │ ├── mem_error_screen.h │ ├── memory.h │ ├── minigame_menu.c │ ├── minigame_menu.h │ ├── nupiinitsram.c │ ├── nupireadwritesram.c │ ├── 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 │ ├── print.c │ ├── print.h │ ├── printf.h │ ├── profiling.c │ ├── profiling.h │ ├── puppycam2.c │ ├── puppycam2.h │ ├── puppycamold.c │ ├── puppycamold.h │ ├── puppyprint.c │ ├── puppyprint.h │ ├── rendering_graph_node.c │ ├── rendering_graph_node.h │ ├── rumble_init.c │ ├── rumble_init.h │ ├── save_file.c │ ├── save_file.h │ ├── screen_transition.c │ ├── screen_transition.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 │ ├── sram.h │ ├── texscroll.c │ ├── texscroll.h │ ├── texscroll │ │ ├── group0_texscroll.inc.c │ │ └── group0_texscroll.inc.h │ ├── tile_scroll.c │ ├── tile_scroll.h │ ├── vc_bin.h │ ├── vc_ultra.c │ ├── vc_ultra.h │ ├── version.c │ └── version.h ├── goddard │ ├── 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 ├── hvqm │ ├── cfbkeep.c │ ├── getrecord.c │ ├── hvqm.c │ ├── hvqm.h │ ├── system.c │ └── timekeeper.c ├── libcart │ ├── LICENSE │ ├── README.md │ ├── ff │ │ ├── diskio.c │ │ ├── diskio.h │ │ ├── ff.c │ │ ├── ff.h │ │ ├── ffconf.h │ │ ├── ffsystem.c │ │ ├── ffunicode.c │ │ ├── memcmp.c │ │ └── memset.c │ ├── include │ │ └── cart.h │ ├── libultra │ │ └── include │ │ │ ├── abi.h │ │ │ ├── gbi.h │ │ │ └── ultra64.h │ ├── makefile │ └── src │ │ ├── cart.c │ │ ├── cartbuf.asm │ │ ├── cartbuf.c │ │ ├── cartcardbyteswap.c │ │ ├── cartcardinit.c │ │ ├── cartcardrdcart.c │ │ ├── cartcardrddram.c │ │ ├── cartcardwrcart.c │ │ ├── cartcardwrdram.c │ │ ├── cartexit.c │ │ ├── cartinit.c │ │ ├── cartint.h │ │ ├── ci.c │ │ ├── ci.h │ │ ├── cicardbyteswap.c │ │ ├── cicardinit.c │ │ ├── cicardrdcart.c │ │ ├── cicardrddram.c │ │ ├── cicardwrcart.c │ │ ├── cicardwrdram.c │ │ ├── ciexit.c │ │ ├── ciinit.c │ │ ├── ed.h │ │ ├── edcard.c │ │ ├── edcardbyteswap.c │ │ ├── edcardinit.c │ │ ├── edcardrdcart.c │ │ ├── edcardrddram.c │ │ ├── edcardwrcart.c │ │ ├── edcardwrdram.c │ │ ├── edexit.c │ │ ├── edinit.c │ │ ├── edx.h │ │ ├── edxcard.c │ │ ├── edxcardbyteswap.c │ │ ├── edxcardinit.c │ │ ├── edxcardrdcart.c │ │ ├── edxcardrddram.c │ │ ├── edxcardwrcart.c │ │ ├── edxcardwrdram.c │ │ ├── edxexit.c │ │ ├── edxinit.c │ │ ├── sc.c │ │ ├── sc.h │ │ ├── sccardbyteswap.c │ │ ├── sccardinit.c │ │ ├── sccardrdcart.c │ │ ├── sccardrddram.c │ │ ├── sccardwrcart.c │ │ ├── sccardwrdram.c │ │ ├── scexit.c │ │ ├── scinit.c │ │ ├── sd.c │ │ ├── sd.h │ │ ├── sdcrc16.asm │ │ └── sdcrc16.c ├── mb64 │ ├── boundary.c │ ├── boundary.h │ ├── collision.c │ ├── collision.h │ ├── compatibility.c │ ├── data.c │ ├── data.h │ ├── display_funcs.c │ ├── display_funcs.h │ ├── file.c │ ├── file.h │ ├── gfx.c │ ├── gfx.h │ ├── main.c │ ├── main.h │ ├── menu.h │ ├── menu_dialog.c │ ├── menu_engine.c │ ├── menu_engine.h │ ├── menu_main.c │ ├── menu_misc.c │ ├── menu_pause.c │ ├── menu_settings.c │ ├── menu_toolbox.c │ ├── painting_frame.c │ ├── structs.h │ ├── trajectory.c │ └── trajectory.h ├── menu │ ├── debug_level_select.h │ ├── file_select.c │ ├── file_select.h │ ├── intro_geo.c │ ├── intro_geo.h │ ├── star_select.c │ ├── star_select.h │ ├── title_screen.c │ └── title_screen.h ├── s2d_engine │ ├── .gitignore │ ├── README.md │ ├── debug.h │ ├── f3d_draw.c │ ├── fixed_point_math.c │ ├── fixedpoint.h │ ├── fonts │ │ ├── comicsans.c │ │ ├── comicsans.h │ │ ├── delfino.c │ │ ├── delfino.h │ │ ├── ifunny.c │ │ ├── ifunny.h │ │ ├── impact.c │ │ ├── impact.h │ │ ├── newsm64.c │ │ ├── newsm64.h │ │ ├── papyrus.c │ │ ├── papyrus.h │ │ ├── timesnewroman.c │ │ ├── timesnewroman.h │ │ ├── ubuntu.c │ │ └── ubuntu.h │ ├── init.c │ ├── init.h │ ├── mtx.c │ ├── mtx.h │ ├── s2d_buffer.c │ ├── s2d_config.h │ ├── s2d_draw.c │ ├── s2d_draw.h │ ├── s2d_engine.h │ ├── s2d_error.c │ ├── s2d_error.h │ ├── s2d_kerning_table.c │ ├── s2d_optimized.c │ ├── s2d_optimized.h │ ├── s2d_parse.c │ ├── s2d_print.h │ ├── s2d_ustdlib.c │ └── s2d_ustdlib.h └── usb │ ├── debug.c │ ├── debug.h │ ├── usb.c │ └── usb.h ├── textures ├── crash_custom │ ├── LICENSE │ └── crash_screen_font.ia1.png ├── effect │ ├── bubble.06048.rgba16.png │ ├── flower.00008.rgba16.png │ ├── flower.00808.rgba16.png │ ├── flower.01008.rgba16.png │ ├── flower.01808.rgba16.png │ ├── lava_bubble.02020.rgba16.png │ ├── lava_bubble.02820.rgba16.png │ ├── lava_bubble.03020.rgba16.png │ ├── lava_bubble.03820.rgba16.png │ ├── lava_bubble.04020.rgba16.png │ ├── lava_bubble.04820.rgba16.png │ ├── lava_bubble.05020.rgba16.png │ ├── lava_bubble.05820.rgba16.png │ ├── rain.rgba16.png │ ├── sand.rgba16.png │ ├── tiny_bubble.0684C.rgba16.png │ └── tiny_bubble.06AD8.rgba16.png ├── fasttext │ └── newfont2.ia4.preswap.png ├── intro_raw │ ├── hand_closed.rgba16.png │ ├── hand_open.rgba16.png │ ├── mario_face_shine.ia8.png │ ├── red_star_0.rgba16.png │ ├── red_star_1.rgba16.png │ ├── red_star_2.rgba16.png │ ├── red_star_3.rgba16.png │ ├── red_star_4.rgba16.png │ ├── red_star_5.rgba16.png │ ├── red_star_6.rgba16.png │ ├── red_star_7.rgba16.png │ ├── sparkle_0.rgba16.png │ ├── sparkle_1.rgba16.png │ ├── sparkle_2.rgba16.png │ ├── sparkle_3.rgba16.png │ ├── sparkle_4.rgba16.png │ ├── sparkle_5.rgba16.png │ ├── white_star_0.rgba16.png │ ├── white_star_1.rgba16.png │ ├── white_star_2.rgba16.png │ ├── white_star_3.rgba16.png │ ├── white_star_4.rgba16.png │ ├── white_star_5.rgba16.png │ ├── white_star_6.rgba16.png │ └── white_star_7.rgba16.png ├── segment2 │ ├── bowser_transition.ia8.png │ ├── custom_BP.rgba16.png │ ├── custom_Empty.rgba16.png │ ├── custom_HP.rgba16.png │ ├── custom_font_graphics_equals.ia4.png │ ├── custom_font_graphics_l_trig.ia4.png │ ├── custom_font_graphics_plus.ia4.png │ ├── custom_font_graphics_slash.ia4.png │ ├── custom_font_graphics_underscore.ia4.png │ ├── custom_slash.rgba16.png │ ├── custom_text.i4.preswap.png │ ├── custom_text2.ia4.preswap.png │ ├── custom_text3.i4.preswap.png │ ├── custom_text4.i4.preswap.png │ ├── font_graphics.05900.ia4.png │ ├── font_graphics.05940.ia4.png │ ├── font_graphics.05980.ia4.png │ ├── font_graphics.059C0.ia4.png │ ├── font_graphics.05A00.ia4.png │ ├── font_graphics.05A40.ia4.png │ ├── font_graphics.05A80.ia4.png │ ├── font_graphics.05AC0.ia4.png │ ├── font_graphics.05B00.ia4.png │ ├── font_graphics.05B40.ia4.png │ ├── font_graphics.05B80.ia4.png │ ├── font_graphics.05BC0.ia4.png │ ├── font_graphics.05C00.ia4.png │ ├── font_graphics.05C40.ia4.png │ ├── font_graphics.05C80.ia4.png │ ├── font_graphics.05CC0.ia4.png │ ├── font_graphics.05D00.ia4.png │ ├── font_graphics.05D40.ia4.png │ ├── font_graphics.05D80.ia4.png │ ├── font_graphics.05DC0.ia4.png │ ├── font_graphics.05E00.ia4.png │ ├── font_graphics.05E40.ia4.png │ ├── font_graphics.05E80.ia4.png │ ├── font_graphics.05EC0.ia4.png │ ├── font_graphics.05F00.ia4.png │ ├── font_graphics.05F40.ia4.png │ ├── font_graphics.05F80.ia4.png │ ├── font_graphics.05FC0.ia4.png │ ├── font_graphics.06000.ia4.png │ ├── font_graphics.06040.ia4.png │ ├── font_graphics.06080.ia4.png │ ├── font_graphics.060C0.ia4.png │ ├── font_graphics.06100.ia4.png │ ├── font_graphics.06140.ia4.png │ ├── font_graphics.06180.ia4.png │ ├── font_graphics.061C0.ia4.png │ ├── font_graphics.06200.ia4.png │ ├── font_graphics.06240.ia4.png │ ├── font_graphics.06280.ia4.png │ ├── font_graphics.062C0.ia4.png │ ├── font_graphics.06300.ia4.png │ ├── font_graphics.06340.ia4.png │ ├── font_graphics.06380.ia4.png │ ├── font_graphics.063C0.ia4.png │ ├── font_graphics.06400.ia4.png │ ├── font_graphics.06410.ia1.png │ ├── font_graphics.06420.ia1.png │ ├── font_graphics.06440.ia4.png │ ├── font_graphics.06480.ia4.png │ ├── font_graphics.064C0.ia4.png │ ├── font_graphics.06500.ia4.png │ ├── font_graphics.06540.ia4.png │ ├── font_graphics.06580.ia4.png │ ├── font_graphics.065C0.ia4.png │ ├── font_graphics.06600.ia4.png │ ├── font_graphics.06640.ia4.png │ ├── font_graphics.06680.ia4.png │ ├── font_graphics.066C0.ia4.png │ ├── font_graphics.06700.ia4.png │ ├── font_graphics.06740.ia4.png │ ├── font_graphics.06780.ia4.png │ ├── font_graphics.067C0.ia4.png │ ├── font_graphics.06800.ia4.png │ ├── font_graphics.06840.ia4.png │ ├── font_graphics.06880.ia4.png │ ├── font_graphics.068C0.ia4.png │ ├── font_graphics.06900.ia4.png │ ├── font_graphics.06940.ia4.png │ ├── font_graphics.06980.ia4.png │ ├── font_graphics.069C0.ia4.png │ ├── font_graphics.06A00.ia4.png │ ├── font_graphics.06A40.ia4.png │ ├── font_graphics.06A80.ia4.png │ ├── font_graphics.06AC0.ia4.png │ ├── font_graphics.06B00.ia4.png │ ├── font_graphics.06B40.ia4.png │ ├── font_graphics.06B80.ia4.png │ ├── font_graphics.06BC0.ia4.png │ ├── font_graphics.06C00.ia4.png │ ├── font_graphics.06C40.ia4.png │ ├── font_graphics.06C80.ia4.png │ ├── font_graphics.06CC0.ia4.png │ ├── font_graphics.06D00.ia4.png │ ├── font_graphics.06D40.ia4.png │ ├── font_graphics.06D80.ia4.png │ ├── font_graphics.06DC0.ia4.png │ ├── font_graphics.06E00.ia4.png │ ├── font_graphics.06E40.ia4.png │ ├── font_graphics.06E80.ia4.png │ ├── font_graphics.06EC0.ia4.png │ ├── font_graphics.06F00.ia4.png │ ├── font_graphics.06F40.ia4.png │ ├── font_graphics.06F80.ia4.png │ ├── font_graphics.06FC0.ia4.png │ ├── light_quarter_circle.ia16.png │ ├── segment2.00000.rgba16.png │ ├── segment2.00200.rgba16.png │ ├── segment2.00400.rgba16.png │ ├── segment2.00600.rgba16.png │ ├── segment2.00800.rgba16.png │ ├── segment2.00A00.rgba16.png │ ├── segment2.00C00.rgba16.png │ ├── segment2.00E00.rgba16.png │ ├── segment2.01000.rgba16.png │ ├── segment2.01200.rgba16.png │ ├── segment2.01400.rgba16.png │ ├── segment2.01600.rgba16.png │ ├── segment2.01800.rgba16.png │ ├── segment2.01A00.rgba16.png │ ├── segment2.01C00.rgba16.png │ ├── segment2.01E00.rgba16.png │ ├── segment2.02000.rgba16.png │ ├── segment2.02200.rgba16.png │ ├── segment2.02400.rgba16.png │ ├── segment2.02600.rgba16.png │ ├── segment2.02800.rgba16.png │ ├── segment2.02A00.rgba16.png │ ├── segment2.02C00.rgba16.png │ ├── segment2.02E00.rgba16.png │ ├── segment2.03000.rgba16.png │ ├── segment2.03200.rgba16.png │ ├── segment2.03400.rgba16.png │ ├── segment2.03600.rgba16.png │ ├── segment2.03800.rgba16.png │ ├── segment2.03A00.rgba16.png │ ├── segment2.03C00.rgba16.png │ ├── segment2.03E00.rgba16.png │ ├── segment2.04000.rgba16.png │ ├── segment2.04200.rgba16.png │ ├── segment2.04400.rgba16.png │ ├── segment2.04600.rgba16.png │ ├── segment2.04800.rgba16.png │ ├── segment2.04A00.rgba16.png │ ├── segment2.04C00.rgba16.png │ ├── segment2.04E00.rgba16.png │ ├── segment2.05000.rgba16.png │ ├── segment2.05200.rgba16.png │ ├── segment2.05400.rgba16.png │ ├── segment2.05600.rgba16.png │ ├── segment2.05800.rgba16.png │ ├── segment2.05A00.rgba16.png │ ├── segment2.05C00.rgba16.png │ ├── segment2.06000.rgba16.png │ ├── segment2.06200.rgba16.png │ ├── segment2.06280.rgba16.png │ ├── segment2.06300.rgba16.png │ ├── segment2.06380.rgba16.png │ ├── segment2.06400.rgba16.png │ ├── segment2.06480.rgba16.png │ ├── segment2.06500.rgba16.png │ ├── segment2.06580.rgba16.png │ ├── segment2.06600.rgba16.png │ ├── segment2.06680.rgba16.png │ ├── segment2.06700.rgba16.png │ ├── segment2.06780.rgba16.png │ ├── segment2.06800.rgba16.png │ ├── segment2.06880.rgba16.png │ ├── segment2.06900.rgba16.png │ ├── segment2.06980.rgba16.png │ ├── segment2.06A00.rgba16.png │ ├── segment2.06A80.rgba16.png │ ├── segment2.06B00.rgba16.png │ ├── segment2.06B80.rgba16.png │ ├── segment2.06C00.rgba16.png │ ├── segment2.06C80.rgba16.png │ ├── segment2.06D00.rgba16.png │ ├── segment2.06D80.rgba16.png │ ├── segment2.06E00.rgba16.png │ ├── segment2.06E80.rgba16.png │ ├── segment2.06F00.rgba16.png │ ├── segment2.06F80.rgba16.png │ ├── segment2.07000.rgba16.png │ ├── segment2.07080.rgba16.png │ ├── segment2.07340.ia1.png │ ├── segment2.07B50.rgba16.png │ ├── segment2.07D50.rgba16.png │ ├── segment2.07F50.rgba16.png │ ├── segment2.08150.rgba16.png │ ├── segment2.081D0.rgba16.png │ ├── segment2.0F458.ia8.png │ ├── segment2.0FC58.ia8.png │ ├── segment2.10458.ia8.png │ ├── segment2.11458.ia8.png │ ├── segment2.14838.ia8.png │ ├── segment2.minus.rgba16.png │ ├── segment2.red_coin.rgba16.png │ ├── segment2.yellow_coin.rgba16.png │ ├── shadow_quarter_circle.ia8.png │ ├── shadow_quarter_circle_64.ia8.png │ ├── shadow_quarter_square.ia8.png │ ├── shadow_quarter_square_64.ia8.png │ └── showrunner_transition.ia8.png └── skyboxes │ ├── bbh.png │ ├── bidw.png │ ├── bitfs.png │ ├── bits.png │ ├── ccm.png │ ├── cloud_floor.png │ ├── clouds.png │ ├── ssl.png │ ├── water.png │ └── wdw.png ├── tools ├── .gitignore ├── BinPNG.py ├── FlipsSrc │ ├── Flips.cpp │ └── Flips.h ├── Makefile ├── aifc_decode.c ├── aiff_extract_codebook.c ├── apply_patch.sh ├── armips.cpp ├── assemble_sound.py ├── audiofile │ ├── Makefile │ ├── audiofile.cpp │ ├── audiofile.h │ └── aupvlist.h ├── calc_bss.sh ├── clang-tidy.sh ├── create_patch.sh ├── deflatepack.c ├── demo_data_converter.py ├── detect_baseroms.py ├── disassemble_sound.py ├── extract_data_for_mio.c ├── filesizer.c ├── fixlights.py ├── format.sh ├── getGoddardSize.py ├── get_latest_unfloader.py ├── hashtable.c ├── hashtable.h ├── libbfd-2.30.so ├── libdeflate │ ├── arm │ │ ├── cpu_features.c │ │ ├── cpu_features.h │ │ └── matchfinder_impl.h │ ├── bt_matchfinder.h │ ├── common_defs.h │ ├── cpu_features_common.h │ ├── deflate_compress.c │ ├── deflate_compress.h │ ├── deflate_constants.h │ ├── hc_matchfinder.h │ ├── ht_matchfinder.h │ ├── lib_common.h │ ├── libdeflate.h │ ├── matchfinder_common.h │ ├── utils.c │ └── x86 │ │ ├── cpu_features.c │ │ ├── cpu_features.h │ │ └── matchfinder_impl.h ├── libmio0.c ├── libmio0.h ├── lz4.c ├── lz4.h ├── lz4hc.c ├── lz4hc.h ├── lz4tpack.c ├── make_version.sh ├── mapPacker.py ├── mario_anims_converter.py ├── mips64-elf-ld ├── mips64-elf-ld-arm ├── 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 ├── revert_patch.sh ├── rncpack.c ├── romalign ├── sdk-tools │ ├── README.md │ ├── 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 ├── slienc.c ├── sm64tools.LICENSE ├── stb │ ├── stb_image.h │ └── stb_image_write.h ├── textconv.c ├── utf8.c ├── utf8.h ├── util │ ├── audiofile_strip.patch │ ├── generate_armips_cpp.py │ └── generate_audiofile_cpp.py ├── utils.c └── utils.h └── util.mk /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/Makefile.split -------------------------------------------------------------------------------- /MakerButtons.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/MakerButtons.blend -------------------------------------------------------------------------------- /MakerButtons.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/MakerButtons.blend1 -------------------------------------------------------------------------------- /MakerCustomModels.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/MakerCustomModels.blend -------------------------------------------------------------------------------- /MakerCustomModels.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/MakerCustomModels.blend1 -------------------------------------------------------------------------------- /MakerTextures.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/MakerTextures.blend -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | v2.3.0 2 | -------------------------------------------------------------------------------- /actors/BadgeSelect/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/BadgeSelect/header.h -------------------------------------------------------------------------------- /actors/BadgeSelect/texscroll.inc.c: -------------------------------------------------------------------------------- 1 | void scroll_actor_dl_BadgeSelect() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /actors/BadgeSelect/texscroll.inc.h: -------------------------------------------------------------------------------- 1 | 2 | extern void scroll_actor_dl_BadgeSelect(); 3 | 4 | -------------------------------------------------------------------------------- /actors/Hammerbro/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/Hammerbro/geo.inc.c -------------------------------------------------------------------------------- /actors/Rex/anim_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/Rex/anim_header.h -------------------------------------------------------------------------------- /actors/Rex/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_Wander.inc.c" 2 | -------------------------------------------------------------------------------- /actors/Rex/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/Rex/geo.inc.c -------------------------------------------------------------------------------- /actors/Rex/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/Rex/geo_header.h -------------------------------------------------------------------------------- /actors/Rex/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/Rex/model.inc.c -------------------------------------------------------------------------------- /actors/amp/anim_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/amp/anim_header.h -------------------------------------------------------------------------------- /actors/amp/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "normal.inc.c" 2 | -------------------------------------------------------------------------------- /actors/amp/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/amp/geo.inc.c -------------------------------------------------------------------------------- /actors/amp/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/amp/geo_header.h -------------------------------------------------------------------------------- /actors/amp/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/amp/model.inc.c -------------------------------------------------------------------------------- /actors/arrow/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/arrow/header.h -------------------------------------------------------------------------------- /actors/arrow/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/arrow/model.inc.c -------------------------------------------------------------------------------- /actors/arrow/texscroll.inc.c: -------------------------------------------------------------------------------- 1 | void scroll_actor_dl_arrow() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /actors/arrow/texscroll.inc.h: -------------------------------------------------------------------------------- 1 | 2 | extern void scroll_actor_dl_arrow(); 3 | 4 | -------------------------------------------------------------------------------- /actors/b/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b/header.h -------------------------------------------------------------------------------- /actors/b/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b/model.inc.c -------------------------------------------------------------------------------- /actors/b0/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b0/header.h -------------------------------------------------------------------------------- /actors/b0/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b0/model.inc.c -------------------------------------------------------------------------------- /actors/b1/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b1/header.h -------------------------------------------------------------------------------- /actors/b1/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b1/model.inc.c -------------------------------------------------------------------------------- /actors/b10/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b10/header.h -------------------------------------------------------------------------------- /actors/b10/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b10/model.inc.c -------------------------------------------------------------------------------- /actors/b11/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b11/header.h -------------------------------------------------------------------------------- /actors/b11/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b11/model.inc.c -------------------------------------------------------------------------------- /actors/b12/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b12/header.h -------------------------------------------------------------------------------- /actors/b12/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b12/model.inc.c -------------------------------------------------------------------------------- /actors/b13/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b13/header.h -------------------------------------------------------------------------------- /actors/b13/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b13/model.inc.c -------------------------------------------------------------------------------- /actors/b14/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b14/header.h -------------------------------------------------------------------------------- /actors/b14/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b14/model.inc.c -------------------------------------------------------------------------------- /actors/b15/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b15/header.h -------------------------------------------------------------------------------- /actors/b15/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b15/model.inc.c -------------------------------------------------------------------------------- /actors/b16/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b16/header.h -------------------------------------------------------------------------------- /actors/b16/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b16/model.inc.c -------------------------------------------------------------------------------- /actors/b17/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b17/header.h -------------------------------------------------------------------------------- /actors/b17/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b17/model.inc.c -------------------------------------------------------------------------------- /actors/b18/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b18/header.h -------------------------------------------------------------------------------- /actors/b18/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b18/model.inc.c -------------------------------------------------------------------------------- /actors/b19/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b19/header.h -------------------------------------------------------------------------------- /actors/b19/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b19/model.inc.c -------------------------------------------------------------------------------- /actors/b2/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b2/header.h -------------------------------------------------------------------------------- /actors/b2/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b2/model.inc.c -------------------------------------------------------------------------------- /actors/b20/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b20/header.h -------------------------------------------------------------------------------- /actors/b20/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b20/model.inc.c -------------------------------------------------------------------------------- /actors/b21/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b21/header.h -------------------------------------------------------------------------------- /actors/b21/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b21/model.inc.c -------------------------------------------------------------------------------- /actors/b22/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b22/header.h -------------------------------------------------------------------------------- /actors/b22/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b22/model.inc.c -------------------------------------------------------------------------------- /actors/b23/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b23/header.h -------------------------------------------------------------------------------- /actors/b23/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b23/model.inc.c -------------------------------------------------------------------------------- /actors/b3/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b3/header.h -------------------------------------------------------------------------------- /actors/b3/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b3/model.inc.c -------------------------------------------------------------------------------- /actors/b4/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b4/header.h -------------------------------------------------------------------------------- /actors/b4/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b4/model.inc.c -------------------------------------------------------------------------------- /actors/b5/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b5/header.h -------------------------------------------------------------------------------- /actors/b5/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b5/model.inc.c -------------------------------------------------------------------------------- /actors/b6/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b6/header.h -------------------------------------------------------------------------------- /actors/b6/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b6/model.inc.c -------------------------------------------------------------------------------- /actors/b7/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b7/header.h -------------------------------------------------------------------------------- /actors/b7/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b7/model.inc.c -------------------------------------------------------------------------------- /actors/b8/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b8/header.h -------------------------------------------------------------------------------- /actors/b8/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b8/model.inc.c -------------------------------------------------------------------------------- /actors/b9/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b9/header.h -------------------------------------------------------------------------------- /actors/b9/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/b9/model.inc.c -------------------------------------------------------------------------------- /actors/bE/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bE/header.h -------------------------------------------------------------------------------- /actors/bE/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bE/model.inc.c -------------------------------------------------------------------------------- /actors/badge/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/badge/geo.inc.c -------------------------------------------------------------------------------- /actors/badge/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/badge/geo_header.h -------------------------------------------------------------------------------- /actors/badge/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/badge/model.inc.c -------------------------------------------------------------------------------- /actors/billmask/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/billmask/geo.inc.c -------------------------------------------------------------------------------- /actors/billmask/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/billmask/model.inc.c -------------------------------------------------------------------------------- /actors/bird/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bird/geo.inc.c -------------------------------------------------------------------------------- /actors/bird/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bird/model.inc.c -------------------------------------------------------------------------------- /actors/blargg/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/blargg/geo.inc.c -------------------------------------------------------------------------------- /actors/blargg/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/blargg/model.inc.c -------------------------------------------------------------------------------- /actors/blaster/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/blaster/geo.inc.c -------------------------------------------------------------------------------- /actors/blaster/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/blaster/geo_header.h -------------------------------------------------------------------------------- /actors/blaster/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/blaster/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/rovertronic/Mario-Builder-64/HEAD/actors/blue_fish/geo.inc.c -------------------------------------------------------------------------------- /actors/bobomb/anim_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bobomb/anim_header.h -------------------------------------------------------------------------------- /actors/bobomb/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bobomb/geo.inc.c -------------------------------------------------------------------------------- /actors/bobomb/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bobomb/geo_header.h -------------------------------------------------------------------------------- /actors/bobomb/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bobomb/model.inc.c -------------------------------------------------------------------------------- /actors/bomb/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bomb/geo.inc.c -------------------------------------------------------------------------------- /actors/bomb/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bomb/geo_header.h -------------------------------------------------------------------------------- /actors/bomb/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bomb/model.inc.c -------------------------------------------------------------------------------- /actors/boo/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/boo/geo.inc.c -------------------------------------------------------------------------------- /actors/boo/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/boo/geo_header.h -------------------------------------------------------------------------------- /actors/boo/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/boo/model.inc.c -------------------------------------------------------------------------------- /actors/boo_castle/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/boo_castle/geo.inc.c -------------------------------------------------------------------------------- /actors/book/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/book/geo.inc.c -------------------------------------------------------------------------------- /actors/book/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/book/model.inc.c -------------------------------------------------------------------------------- /actors/bookend/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bookend/geo.inc.c -------------------------------------------------------------------------------- /actors/bookend/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bookend/model.inc.c -------------------------------------------------------------------------------- /actors/bowser/anim_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bowser/anim_header.h -------------------------------------------------------------------------------- /actors/bowser/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bowser/geo.inc.c -------------------------------------------------------------------------------- /actors/bowser/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bowser/geo_header.h -------------------------------------------------------------------------------- /actors/bowser/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bowser/model.inc.c -------------------------------------------------------------------------------- /actors/bowser_key/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bowser_key/geo.inc.c -------------------------------------------------------------------------------- /actors/bs_bar/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bs_bar/header.h -------------------------------------------------------------------------------- /actors/bs_bar/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bs_bar/model.inc.c -------------------------------------------------------------------------------- /actors/bs_hud/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bs_hud/header.h -------------------------------------------------------------------------------- /actors/bs_hud/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bs_hud/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/rovertronic/Mario-Builder-64/HEAD/actors/bub/geo.inc.c -------------------------------------------------------------------------------- /actors/bub/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bub/model.inc.c -------------------------------------------------------------------------------- /actors/bubba/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bubba/geo.inc.c -------------------------------------------------------------------------------- /actors/bubba/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bubba/model.inc.c -------------------------------------------------------------------------------- /actors/bubble/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bubble/geo.inc.c -------------------------------------------------------------------------------- /actors/bubble/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bubble/model.inc.c -------------------------------------------------------------------------------- /actors/bully/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bully/geo.inc.c -------------------------------------------------------------------------------- /actors/bully/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/bully/model.inc.c -------------------------------------------------------------------------------- /actors/burn_smoke/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/burn_smoke/geo.inc.c -------------------------------------------------------------------------------- /actors/butterfly/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/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/rovertronic/Mario-Builder-64/HEAD/actors/capswitch/geo.inc.c -------------------------------------------------------------------------------- /actors/chain_ball/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/chain_ball/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/rovertronic/Mario-Builder-64/HEAD/actors/chair/geo.inc.c -------------------------------------------------------------------------------- /actors/chair/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/chair/model.inc.c -------------------------------------------------------------------------------- /actors/chicken/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_ArmatureAction.inc.c" 2 | -------------------------------------------------------------------------------- /actors/chicken/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/chicken/geo.inc.c -------------------------------------------------------------------------------- /actors/chicken/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/chicken/geo_header.h -------------------------------------------------------------------------------- /actors/chicken/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/chicken/model.inc.c -------------------------------------------------------------------------------- /actors/chicken/texscroll.inc.c: -------------------------------------------------------------------------------- 1 | void scroll_actor_geo_chicken() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /actors/chicken/texscroll.inc.h: -------------------------------------------------------------------------------- 1 | 2 | extern void scroll_actor_geo_chicken(); 3 | 4 | -------------------------------------------------------------------------------- /actors/chuckya/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/chuckya/geo.inc.c -------------------------------------------------------------------------------- /actors/chuckya/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/chuckya/model.inc.c -------------------------------------------------------------------------------- /actors/clam_shell/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/clam_shell/geo.inc.c -------------------------------------------------------------------------------- /actors/cobie2/anim_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/cobie2/anim_header.h -------------------------------------------------------------------------------- /actors/cobie2/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_ArmatureAction.inc.c" 2 | -------------------------------------------------------------------------------- /actors/cobie2/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/cobie2/geo.inc.c -------------------------------------------------------------------------------- /actors/cobie2/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/cobie2/geo_header.h -------------------------------------------------------------------------------- /actors/cobie2/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/cobie2/model.inc.c -------------------------------------------------------------------------------- /actors/coin/coin_0.ia8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/coin/coin_0.ia8.png -------------------------------------------------------------------------------- /actors/coin/coin_45.ia8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/coin/coin_45.ia8.png -------------------------------------------------------------------------------- /actors/coin/coin_90.ia8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/coin/coin_90.ia8.png -------------------------------------------------------------------------------- /actors/coin/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/coin/geo.inc.c -------------------------------------------------------------------------------- /actors/coin/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/coin/model.inc.c -------------------------------------------------------------------------------- /actors/common0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/common0.c -------------------------------------------------------------------------------- /actors/common0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/common0.h -------------------------------------------------------------------------------- /actors/common0_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/common0_geo.c -------------------------------------------------------------------------------- /actors/common1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/common1.c -------------------------------------------------------------------------------- /actors/common1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/common1.h -------------------------------------------------------------------------------- /actors/common1_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/common1_geo.c -------------------------------------------------------------------------------- /actors/conveyor/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/conveyor/geo.inc.c -------------------------------------------------------------------------------- /actors/conveyor/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/conveyor/model.inc.c -------------------------------------------------------------------------------- /actors/crab/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/crab/geo.inc.c -------------------------------------------------------------------------------- /actors/crab/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/crab/geo_header.h -------------------------------------------------------------------------------- /actors/crab/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/crab/model.inc.c -------------------------------------------------------------------------------- /actors/crab_anims/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_ArmatureAction.inc.c" 2 | -------------------------------------------------------------------------------- /actors/crowbar/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/crowbar/geo.inc.c -------------------------------------------------------------------------------- /actors/crowbar/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/crowbar/geo_header.h -------------------------------------------------------------------------------- /actors/crowbar/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/crowbar/model.inc.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/rovertronic/Mario-Builder-64/HEAD/actors/cyan_fish/geo.inc.c -------------------------------------------------------------------------------- /actors/dcoin/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/dcoin/geo.inc.c -------------------------------------------------------------------------------- /actors/dcoin/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/dcoin/geo_header.h -------------------------------------------------------------------------------- /actors/dcoin/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/dcoin/model.inc.c -------------------------------------------------------------------------------- /actors/dirt/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/dirt/geo.inc.c -------------------------------------------------------------------------------- /actors/dirt/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/dirt/model.inc.c -------------------------------------------------------------------------------- /actors/door/collision.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/door/collision.inc.c -------------------------------------------------------------------------------- /actors/door/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/door/geo.inc.c -------------------------------------------------------------------------------- /actors/door/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/door/model.inc.c -------------------------------------------------------------------------------- /actors/dorrie/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/dorrie/geo.inc.c -------------------------------------------------------------------------------- /actors/dorrie/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/dorrie/model.inc.c -------------------------------------------------------------------------------- /actors/egg/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/egg/geo.inc.c -------------------------------------------------------------------------------- /actors/egg/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/egg/geo_header.h -------------------------------------------------------------------------------- /actors/egg/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/egg/model.inc.c -------------------------------------------------------------------------------- /actors/egg/texscroll.inc.c: -------------------------------------------------------------------------------- 1 | void scroll_actor_geo_egg() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /actors/egg/texscroll.inc.h: -------------------------------------------------------------------------------- 1 | 2 | extern void scroll_actor_geo_egg(); 3 | 4 | -------------------------------------------------------------------------------- /actors/executive_/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/executive_/header.h -------------------------------------------------------------------------------- /actors/explosion/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/explosion/geo.inc.c -------------------------------------------------------------------------------- /actors/eyerok/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/eyerok/geo.inc.c -------------------------------------------------------------------------------- /actors/eyerok/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/eyerok/model.inc.c -------------------------------------------------------------------------------- /actors/fatplat/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/fatplat/geo.inc.c -------------------------------------------------------------------------------- /actors/fatplat/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/fatplat/geo_header.h -------------------------------------------------------------------------------- /actors/fatplat/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/fatplat/model.inc.c -------------------------------------------------------------------------------- /actors/flame/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/flame/geo.inc.c -------------------------------------------------------------------------------- /actors/flame/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/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/rovertronic/Mario-Builder-64/HEAD/actors/flyguy/geo.inc.c -------------------------------------------------------------------------------- /actors/flyguy/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/flyguy/model.inc.c -------------------------------------------------------------------------------- /actors/fwoosh/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/fwoosh/geo.inc.c -------------------------------------------------------------------------------- /actors/fwoosh/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/fwoosh/model.inc.c -------------------------------------------------------------------------------- /actors/girl/anim_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/girl/anim_header.h -------------------------------------------------------------------------------- /actors/girl/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_Armature_001Action.inc.c" 2 | -------------------------------------------------------------------------------- /actors/goomba/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0801DA34.inc.c" 2 | -------------------------------------------------------------------------------- /actors/goomba/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/goomba/geo.inc.c -------------------------------------------------------------------------------- /actors/goomba/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/goomba/model.inc.c -------------------------------------------------------------------------------- /actors/gooner/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/gooner/geo.inc.c -------------------------------------------------------------------------------- /actors/gooner/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/gooner/geo_header.h -------------------------------------------------------------------------------- /actors/gooner/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/gooner/model.inc.c -------------------------------------------------------------------------------- /actors/grindel/5.rgba16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/grindel/5.rgba16.png -------------------------------------------------------------------------------- /actors/grindel/6.rgba16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/grindel/6.rgba16.png -------------------------------------------------------------------------------- /actors/grindel/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/grindel/geo.inc.c -------------------------------------------------------------------------------- /actors/grindel/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/grindel/model.inc.c -------------------------------------------------------------------------------- /actors/group0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/group0.c -------------------------------------------------------------------------------- /actors/group0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/group0.h -------------------------------------------------------------------------------- /actors/group0_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/group0_geo.c -------------------------------------------------------------------------------- /actors/group14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/group14.c -------------------------------------------------------------------------------- /actors/group14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/group14.h -------------------------------------------------------------------------------- /actors/group14_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/group14_geo.c -------------------------------------------------------------------------------- /actors/group17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/group17.c -------------------------------------------------------------------------------- /actors/group17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/group17.h -------------------------------------------------------------------------------- /actors/group17_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/group17_geo.c -------------------------------------------------------------------------------- /actors/hammer/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/hammer/geo.inc.c -------------------------------------------------------------------------------- /actors/hammer/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/hammer/geo_header.h -------------------------------------------------------------------------------- /actors/hammer/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/hammer/model.inc.c -------------------------------------------------------------------------------- /actors/heart/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/heart/geo.inc.c -------------------------------------------------------------------------------- /actors/heart/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/heart/model.inc.c -------------------------------------------------------------------------------- /actors/heave_ho/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/heave_ho/geo.inc.c -------------------------------------------------------------------------------- /actors/heave_ho/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/heave_ho/model.inc.c -------------------------------------------------------------------------------- /actors/hoot/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/hoot/geo.inc.c -------------------------------------------------------------------------------- /actors/hoot/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/hoot/model.inc.c -------------------------------------------------------------------------------- /actors/ico_badge/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/ico_badge/header.h -------------------------------------------------------------------------------- /actors/ico_heart/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/ico_heart/header.h -------------------------------------------------------------------------------- /actors/ico_mana/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/ico_mana/header.h -------------------------------------------------------------------------------- /actors/ico_mana/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/ico_mana/model.inc.c -------------------------------------------------------------------------------- /actors/imbue/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/imbue/geo.inc.c -------------------------------------------------------------------------------- /actors/imbue/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/imbue/geo_header.h -------------------------------------------------------------------------------- /actors/imbue/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/imbue/model.inc.c -------------------------------------------------------------------------------- /actors/imbuec/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/imbuec/geo.inc.c -------------------------------------------------------------------------------- /actors/imbuec/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/imbuec/geo_header.h -------------------------------------------------------------------------------- /actors/imbuec/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/imbuec/model.inc.c -------------------------------------------------------------------------------- /actors/imbues/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/imbues/geo.inc.c -------------------------------------------------------------------------------- /actors/imbues/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/imbues/geo_header.h -------------------------------------------------------------------------------- /actors/imbues/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/imbues/model.inc.c -------------------------------------------------------------------------------- /actors/imbuet/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/imbuet/geo.inc.c -------------------------------------------------------------------------------- /actors/imbuet/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/imbuet/geo_header.h -------------------------------------------------------------------------------- /actors/imbuet/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/imbuet/model.inc.c -------------------------------------------------------------------------------- /actors/klepto/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/klepto/geo.inc.c -------------------------------------------------------------------------------- /actors/klepto/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/klepto/model.inc.c -------------------------------------------------------------------------------- /actors/koopa/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/koopa/geo.inc.c -------------------------------------------------------------------------------- /actors/koopa/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/koopa/model.inc.c -------------------------------------------------------------------------------- /actors/koopa_flag/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/koopa_flag/geo.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/rovertronic/Mario-Builder-64/HEAD/actors/leaves/geo.inc.c -------------------------------------------------------------------------------- /actors/leaves/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/leaves/model.inc.c -------------------------------------------------------------------------------- /actors/lev_edge/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/lev_edge/geo.inc.c -------------------------------------------------------------------------------- /actors/lev_edge/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/lev_edge/model.inc.c -------------------------------------------------------------------------------- /actors/loopingp/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/loopingp/geo.inc.c -------------------------------------------------------------------------------- /actors/loopingp/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/loopingp/model.inc.c -------------------------------------------------------------------------------- /actors/mad_piano/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mad_piano/geo.inc.c -------------------------------------------------------------------------------- /actors/maker/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/maker/header.h -------------------------------------------------------------------------------- /actors/maker/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/maker/model.inc.c -------------------------------------------------------------------------------- /actors/manta/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_05008CFC.inc.c" 2 | -------------------------------------------------------------------------------- /actors/manta/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/manta/geo.inc.c -------------------------------------------------------------------------------- /actors/manta/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/manta/model.inc.c -------------------------------------------------------------------------------- /actors/mario/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mario/geo.inc.c -------------------------------------------------------------------------------- /actors/mario/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mario/geo_header.h -------------------------------------------------------------------------------- /actors/mario/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mario/model.inc.c -------------------------------------------------------------------------------- /actors/mario_btcm/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_mario_idle.inc.c" 2 | -------------------------------------------------------------------------------- /actors/mario_btcm/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mario_btcm/geo.inc.c -------------------------------------------------------------------------------- /actors/mario_cap/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mario_cap/geo.inc.c -------------------------------------------------------------------------------- /actors/metal_box/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/metal_box/geo.inc.c -------------------------------------------------------------------------------- /actors/metalstar/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/metalstar/geo.inc.c -------------------------------------------------------------------------------- /actors/mips/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mips/geo.inc.c -------------------------------------------------------------------------------- /actors/mips/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mips/model.inc.c -------------------------------------------------------------------------------- /actors/mist/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mist/geo.inc.c -------------------------------------------------------------------------------- /actors/mist/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mist/model.inc.c -------------------------------------------------------------------------------- /actors/mm_btn/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mm_btn/header.h -------------------------------------------------------------------------------- /actors/mm_btn/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mm_btn/model.inc.c -------------------------------------------------------------------------------- /actors/moleman3/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_ArmatureAction.inc.c" 2 | -------------------------------------------------------------------------------- /actors/moleman3/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/moleman3/geo.inc.c -------------------------------------------------------------------------------- /actors/moleman3/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/moleman3/model.inc.c -------------------------------------------------------------------------------- /actors/moneybag/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/moneybag/geo.inc.c -------------------------------------------------------------------------------- /actors/moneybag/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/moneybag/model.inc.c -------------------------------------------------------------------------------- /actors/monty_mole/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/monty_mole/geo.inc.c -------------------------------------------------------------------------------- /actors/motos/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/motos/geo.inc.c -------------------------------------------------------------------------------- /actors/motos/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/motos/header.h -------------------------------------------------------------------------------- /actors/motos/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/motos/model.inc.c -------------------------------------------------------------------------------- /actors/mr_i_iris/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/mr_i_iris/geo.inc.c -------------------------------------------------------------------------------- /actors/noteblock/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/noteblock/geo.inc.c -------------------------------------------------------------------------------- /actors/null_anims/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_Armature_001Action.inc.c" 2 | -------------------------------------------------------------------------------- /actors/number/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/number/geo.inc.c -------------------------------------------------------------------------------- /actors/ocean_ttc/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/ocean_ttc/geo.inc.c -------------------------------------------------------------------------------- /actors/peach/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/peach/geo.inc.c -------------------------------------------------------------------------------- /actors/peach/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/peach/model.inc.c -------------------------------------------------------------------------------- /actors/pebble/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/pebble/model.inc.c -------------------------------------------------------------------------------- /actors/penguin/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/penguin/geo.inc.c -------------------------------------------------------------------------------- /actors/penguin/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/penguin/model.inc.c -------------------------------------------------------------------------------- /actors/podoboo/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/podoboo/geo.inc.c -------------------------------------------------------------------------------- /actors/podoboo/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/podoboo/geo_header.h -------------------------------------------------------------------------------- /actors/podoboo/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/podoboo/model.inc.c -------------------------------------------------------------------------------- /actors/pokey/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/pokey/geo.inc.c -------------------------------------------------------------------------------- /actors/pokey/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/pokey/model.inc.c -------------------------------------------------------------------------------- /actors/quest/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/quest/geo.inc.c -------------------------------------------------------------------------------- /actors/quest/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/quest/geo_header.h -------------------------------------------------------------------------------- /actors/quest/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/quest/model.inc.c -------------------------------------------------------------------------------- /actors/rb_bar/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/rb_bar/header.h -------------------------------------------------------------------------------- /actors/rb_bar/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/rb_bar/model.inc.c -------------------------------------------------------------------------------- /actors/rb_hud/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/rb_hud/header.h -------------------------------------------------------------------------------- /actors/rb_hud/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/rb_hud/model.inc.c -------------------------------------------------------------------------------- /actors/rfbox/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/rfbox/geo.inc.c -------------------------------------------------------------------------------- /actors/rfbox/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/rfbox/geo_header.h -------------------------------------------------------------------------------- /actors/rfbox/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/rfbox/model.inc.c -------------------------------------------------------------------------------- /actors/ring/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/ring/geo.inc.c -------------------------------------------------------------------------------- /actors/ring/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/ring/geo_header.h -------------------------------------------------------------------------------- /actors/ring/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/ring/model.inc.c -------------------------------------------------------------------------------- /actors/ring/texscroll.inc.c: -------------------------------------------------------------------------------- 1 | void scroll_actor_geo_ring() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /actors/ring/texscroll.inc.h: -------------------------------------------------------------------------------- 1 | 2 | extern void scroll_actor_geo_ring(); 3 | 4 | -------------------------------------------------------------------------------- /actors/sand/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/sand/model.inc.c -------------------------------------------------------------------------------- /actors/sb_cube/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/sb_cube/geo.inc.c -------------------------------------------------------------------------------- /actors/sb_cube/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/sb_cube/geo_header.h -------------------------------------------------------------------------------- /actors/sb_cube/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/sb_cube/model.inc.c -------------------------------------------------------------------------------- /actors/scuttlebug/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0601504C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/scuttlebug/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/scuttlebug/geo.inc.c -------------------------------------------------------------------------------- /actors/seaweed/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0600A4BC.inc.c" 2 | -------------------------------------------------------------------------------- /actors/seaweed/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/seaweed/geo.inc.c -------------------------------------------------------------------------------- /actors/seaweed/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/seaweed/model.inc.c -------------------------------------------------------------------------------- /actors/shopgui/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/shopgui/header.h -------------------------------------------------------------------------------- /actors/shopgui/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/shopgui/model.inc.c -------------------------------------------------------------------------------- /actors/shopselect/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/shopselect/header.h -------------------------------------------------------------------------------- /actors/showrunner/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/showrunner/geo.inc.c -------------------------------------------------------------------------------- /actors/skeeter/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/skeeter/geo.inc.c -------------------------------------------------------------------------------- /actors/skeeter/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/skeeter/model.inc.c -------------------------------------------------------------------------------- /actors/small_key/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/small_key/geo.inc.c -------------------------------------------------------------------------------- /actors/smoke/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/smoke/model.inc.c -------------------------------------------------------------------------------- /actors/snakeblock2/texscroll.inc.c: -------------------------------------------------------------------------------- 1 | void scroll_actor_geo_snakeblock2() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /actors/snakeblock2/texscroll.inc.h: -------------------------------------------------------------------------------- 1 | 2 | extern void scroll_actor_geo_snakeblock2(); 3 | 4 | -------------------------------------------------------------------------------- /actors/snakeblock3/texscroll.inc.c: -------------------------------------------------------------------------------- 1 | void scroll_actor_geo_snakeblock3() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /actors/snakeblock3/texscroll.inc.h: -------------------------------------------------------------------------------- 1 | 2 | extern void scroll_actor_geo_snakeblock3(); 3 | 4 | -------------------------------------------------------------------------------- /actors/snowman/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/snowman/geo.inc.c -------------------------------------------------------------------------------- /actors/snowman/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/snowman/model.inc.c -------------------------------------------------------------------------------- /actors/snufit/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/snufit/geo.inc.c -------------------------------------------------------------------------------- /actors/snufit/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/snufit/model.inc.c -------------------------------------------------------------------------------- /actors/sparkle/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/sparkle/geo.inc.c -------------------------------------------------------------------------------- /actors/sparkle/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/sparkle/model.inc.c -------------------------------------------------------------------------------- /actors/spawn/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/spawn/geo.inc.c -------------------------------------------------------------------------------- /actors/spawn/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/spawn/geo_header.h -------------------------------------------------------------------------------- /actors/spawn/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/spawn/header.h -------------------------------------------------------------------------------- /actors/spawn/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/spawn/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/rovertronic/Mario-Builder-64/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/rovertronic/Mario-Builder-64/HEAD/actors/spiny/geo.inc.c -------------------------------------------------------------------------------- /actors/spiny/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/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/rovertronic/Mario-Builder-64/HEAD/actors/spiny_egg/geo.inc.c -------------------------------------------------------------------------------- /actors/spooner/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/spooner/geo.inc.c -------------------------------------------------------------------------------- /actors/spooner/geo_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/spooner/geo_header.h -------------------------------------------------------------------------------- /actors/spooner/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/spooner/header.h -------------------------------------------------------------------------------- /actors/spooner/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/spooner/model.inc.c -------------------------------------------------------------------------------- /actors/spotlight/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/spotlight/geo.inc.c -------------------------------------------------------------------------------- /actors/srball_1/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/srball_1/geo.inc.c -------------------------------------------------------------------------------- /actors/srball_1/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/srball_1/model.inc.c -------------------------------------------------------------------------------- /actors/srball_2/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/srball_2/geo.inc.c -------------------------------------------------------------------------------- /actors/srspike/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/srspike/geo.inc.c -------------------------------------------------------------------------------- /actors/star/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/star/geo.inc.c -------------------------------------------------------------------------------- /actors/star/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/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/rovertronic/Mario-Builder-64/HEAD/actors/sushi/geo.inc.c -------------------------------------------------------------------------------- /actors/sushi/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/sushi/model.inc.c -------------------------------------------------------------------------------- /actors/swoop/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/swoop/geo.inc.c -------------------------------------------------------------------------------- /actors/swoop/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/swoop/model.inc.c -------------------------------------------------------------------------------- /actors/thwomp/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/thwomp/geo.inc.c -------------------------------------------------------------------------------- /actors/title/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/title/header.h -------------------------------------------------------------------------------- /actors/title/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/title/model.inc.c -------------------------------------------------------------------------------- /actors/toad/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/toad/geo.inc.c -------------------------------------------------------------------------------- /actors/toad/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/toad/model.inc.c -------------------------------------------------------------------------------- /actors/token/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/token/geo.inc.c -------------------------------------------------------------------------------- /actors/token/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/token/model.inc.c -------------------------------------------------------------------------------- /actors/token/texscroll.inc.c: -------------------------------------------------------------------------------- 1 | void scroll_actor_geo_token() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /actors/token/texscroll.inc.h: -------------------------------------------------------------------------------- 1 | 2 | extern void scroll_actor_geo_token(); 3 | 4 | -------------------------------------------------------------------------------- /actors/top/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/top/header.h -------------------------------------------------------------------------------- /actors/top/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/top/model.inc.c -------------------------------------------------------------------------------- /actors/tornado/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/tornado/geo.inc.c -------------------------------------------------------------------------------- /actors/tree/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/tree/geo.inc.c -------------------------------------------------------------------------------- /actors/tree/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/tree/model.inc.c -------------------------------------------------------------------------------- /actors/tvhead/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_TV_001Action.inc.c" 2 | -------------------------------------------------------------------------------- /actors/tvhead/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/tvhead/geo.inc.c -------------------------------------------------------------------------------- /actors/uiCorner/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/uiCorner/header.h -------------------------------------------------------------------------------- /actors/uibutton/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/uibutton/header.h -------------------------------------------------------------------------------- /actors/ukiki/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/ukiki/geo.inc.c -------------------------------------------------------------------------------- /actors/ukiki/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/ukiki/model.inc.c -------------------------------------------------------------------------------- /actors/unagi/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/unagi/geo.inc.c -------------------------------------------------------------------------------- /actors/unagi/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/unagi/model.inc.c -------------------------------------------------------------------------------- /actors/wallet/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/wallet/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/rovertronic/Mario-Builder-64/HEAD/actors/whomp/geo.inc.c -------------------------------------------------------------------------------- /actors/whomp/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/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/rovertronic/Mario-Builder-64/HEAD/actors/yoshi/geo.inc.c -------------------------------------------------------------------------------- /actors/yoshi/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/actors/yoshi/model.inc.c -------------------------------------------------------------------------------- /asm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/asm.txt -------------------------------------------------------------------------------- /asm/debug/map.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/asm/debug/map.s -------------------------------------------------------------------------------- /asm/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/asm/entry.s -------------------------------------------------------------------------------- /asm/fcr31.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/asm/fcr31.s -------------------------------------------------------------------------------- /asm/ipl3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/asm/ipl3.s -------------------------------------------------------------------------------- /asm/n64_assert.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/asm/n64_assert.s -------------------------------------------------------------------------------- /asm/rom_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/asm/rom_header.s -------------------------------------------------------------------------------- /asm/round.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/asm/round.s -------------------------------------------------------------------------------- /asm/vc_bin.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/asm/vc_bin.s -------------------------------------------------------------------------------- /assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/assets.json -------------------------------------------------------------------------------- /assets/demo_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/assets/demo_data.json -------------------------------------------------------------------------------- /bin/debug_level_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/bin/debug_level_select.c -------------------------------------------------------------------------------- /bin/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/bin/effect.c -------------------------------------------------------------------------------- /bin/segment2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/bin/segment2.c -------------------------------------------------------------------------------- /bin/title_screen_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/bin/title_screen_bg.c -------------------------------------------------------------------------------- /bin/vc/osEepStatusVC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/bin/vc/osEepStatusVC.bin -------------------------------------------------------------------------------- /compile_flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/compile_flags.txt -------------------------------------------------------------------------------- /compression/gziprules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/compression/gziprules.mk -------------------------------------------------------------------------------- /compression/lz4trules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/compression/lz4trules.mk -------------------------------------------------------------------------------- /compression/mio0rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/compression/mio0rules.mk -------------------------------------------------------------------------------- /compression/rnc1rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/compression/rnc1rules.mk -------------------------------------------------------------------------------- /compression/rnc2rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/compression/rnc2rules.mk -------------------------------------------------------------------------------- /compression/yay0rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/compression/yay0rules.mk -------------------------------------------------------------------------------- /data/bad_apple_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/data/bad_apple_data.c -------------------------------------------------------------------------------- /data/behavior_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/data/behavior_data.c -------------------------------------------------------------------------------- /data/capcom.hvqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/data/capcom.hvqm -------------------------------------------------------------------------------- /data/capcom.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/data/capcom.s -------------------------------------------------------------------------------- /doxygen/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/doxygen/logo.png -------------------------------------------------------------------------------- /extract_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/extract_assets.py -------------------------------------------------------------------------------- /fast64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/fast64.json -------------------------------------------------------------------------------- /include/behavior_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/behavior_data.h -------------------------------------------------------------------------------- /include/color_presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/color_presets.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/config.h -------------------------------------------------------------------------------- /include/course_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/course_table.h -------------------------------------------------------------------------------- /include/eu_translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/eu_translation.h -------------------------------------------------------------------------------- /include/farcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/farcall.h -------------------------------------------------------------------------------- /include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/float.h -------------------------------------------------------------------------------- /include/geo_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/geo_commands.h -------------------------------------------------------------------------------- /include/gfx_dimensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/gfx_dimensions.h -------------------------------------------------------------------------------- /include/helper_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/helper_macros.h -------------------------------------------------------------------------------- /include/hvqm/HVQM2File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/hvqm/HVQM2File.h -------------------------------------------------------------------------------- /include/hvqm/HVQmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/hvqm/HVQmd.h -------------------------------------------------------------------------------- /include/hvqm/adpcmdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/hvqm/adpcmdec.h -------------------------------------------------------------------------------- /include/hvqm/hvqm2dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/hvqm/hvqm2dec.h -------------------------------------------------------------------------------- /include/ique/PR/R4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/R4300.h -------------------------------------------------------------------------------- /include/ique/PR/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/abi.h -------------------------------------------------------------------------------- /include/ique/PR/bbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/bbfs.h -------------------------------------------------------------------------------- /include/ique/PR/em.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/em.h -------------------------------------------------------------------------------- /include/ique/PR/gbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/gbi.h -------------------------------------------------------------------------------- /include/ique/PR/gs2dex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/gs2dex.h -------------------------------------------------------------------------------- /include/ique/PR/gt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/gt.h -------------------------------------------------------------------------------- /include/ique/PR/gtoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/gtoff.h -------------------------------------------------------------------------------- /include/ique/PR/gu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/gu.h -------------------------------------------------------------------------------- /include/ique/PR/gzsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/gzsort.h -------------------------------------------------------------------------------- /include/ique/PR/leo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/leo.h -------------------------------------------------------------------------------- /include/ique/PR/leosp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/leosp.h -------------------------------------------------------------------------------- /include/ique/PR/mbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/mbi.h -------------------------------------------------------------------------------- /include/ique/PR/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os.h -------------------------------------------------------------------------------- /include/ique/PR/os_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os_ai.h -------------------------------------------------------------------------------- /include/ique/PR/os_bb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os_bb.h -------------------------------------------------------------------------------- /include/ique/PR/os_gio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os_gio.h -------------------------------------------------------------------------------- /include/ique/PR/os_pfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os_pfs.h -------------------------------------------------------------------------------- /include/ique/PR/os_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os_pi.h -------------------------------------------------------------------------------- /include/ique/PR/os_rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os_rdp.h -------------------------------------------------------------------------------- /include/ique/PR/os_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os_reg.h -------------------------------------------------------------------------------- /include/ique/PR/os_rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os_rsp.h -------------------------------------------------------------------------------- /include/ique/PR/os_si.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os_si.h -------------------------------------------------------------------------------- /include/ique/PR/os_tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os_tlb.h -------------------------------------------------------------------------------- /include/ique/PR/os_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os_usb.h -------------------------------------------------------------------------------- /include/ique/PR/os_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/os_vi.h -------------------------------------------------------------------------------- /include/ique/PR/ramrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/ramrom.h -------------------------------------------------------------------------------- /include/ique/PR/rcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/rcp.h -------------------------------------------------------------------------------- /include/ique/PR/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/rdb.h -------------------------------------------------------------------------------- /include/ique/PR/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/region.h -------------------------------------------------------------------------------- /include/ique/PR/rmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/rmon.h -------------------------------------------------------------------------------- /include/ique/PR/rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/rsp.h -------------------------------------------------------------------------------- /include/ique/PR/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/sched.h -------------------------------------------------------------------------------- /include/ique/PR/sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/sp.h -------------------------------------------------------------------------------- /include/ique/PR/sptask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/sptask.h -------------------------------------------------------------------------------- /include/ique/PR/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/trace.h -------------------------------------------------------------------------------- /include/ique/PR/ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/ucode.h -------------------------------------------------------------------------------- /include/ique/PR/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/PR/verify.h -------------------------------------------------------------------------------- /include/ique/ultra64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/ique/ultra64.h -------------------------------------------------------------------------------- /include/level_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/level_commands.h -------------------------------------------------------------------------------- /include/level_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/level_table.h -------------------------------------------------------------------------------- /include/libc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/libc/math.h -------------------------------------------------------------------------------- /include/libc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/libc/stdarg.h -------------------------------------------------------------------------------- /include/libc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/libc/stddef.h -------------------------------------------------------------------------------- /include/libc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/libc/stdio.h -------------------------------------------------------------------------------- /include/libc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/libc/stdlib.h -------------------------------------------------------------------------------- /include/libc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/libc/string.h -------------------------------------------------------------------------------- /include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/macros.h -------------------------------------------------------------------------------- /include/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/macros.inc -------------------------------------------------------------------------------- /include/model_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/model_ids.h -------------------------------------------------------------------------------- /include/n64/PR/PRimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/PRimage.h -------------------------------------------------------------------------------- /include/n64/PR/R4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/R4300.h -------------------------------------------------------------------------------- /include/n64/PR/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/abi.h -------------------------------------------------------------------------------- /include/n64/PR/gbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/gbi.h -------------------------------------------------------------------------------- /include/n64/PR/gs2dex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/gs2dex.h -------------------------------------------------------------------------------- /include/n64/PR/gt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/gt.h -------------------------------------------------------------------------------- /include/n64/PR/gtoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/gtoff.h -------------------------------------------------------------------------------- /include/n64/PR/gu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/gu.h -------------------------------------------------------------------------------- /include/n64/PR/gzsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/gzsort.h -------------------------------------------------------------------------------- /include/n64/PR/leo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/leo.h -------------------------------------------------------------------------------- /include/n64/PR/mbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/mbi.h -------------------------------------------------------------------------------- /include/n64/PR/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os.h -------------------------------------------------------------------------------- /include/n64/PR/os_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_ai.h -------------------------------------------------------------------------------- /include/n64/PR/os_cont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_cont.h -------------------------------------------------------------------------------- /include/n64/PR/os_gio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_gio.h -------------------------------------------------------------------------------- /include/n64/PR/os_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_host.h -------------------------------------------------------------------------------- /include/n64/PR/os_libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_libc.h -------------------------------------------------------------------------------- /include/n64/PR/os_pfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_pfs.h -------------------------------------------------------------------------------- /include/n64/PR/os_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_pi.h -------------------------------------------------------------------------------- /include/n64/PR/os_rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_rdp.h -------------------------------------------------------------------------------- /include/n64/PR/os_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_reg.h -------------------------------------------------------------------------------- /include/n64/PR/os_rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_rsp.h -------------------------------------------------------------------------------- /include/n64/PR/os_si.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_si.h -------------------------------------------------------------------------------- /include/n64/PR/os_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_time.h -------------------------------------------------------------------------------- /include/n64/PR/os_tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_tlb.h -------------------------------------------------------------------------------- /include/n64/PR/os_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/os_vi.h -------------------------------------------------------------------------------- /include/n64/PR/ramrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/ramrom.h -------------------------------------------------------------------------------- /include/n64/PR/rcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/rcp.h -------------------------------------------------------------------------------- /include/n64/PR/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/rdb.h -------------------------------------------------------------------------------- /include/n64/PR/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/region.h -------------------------------------------------------------------------------- /include/n64/PR/rmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/rmon.h -------------------------------------------------------------------------------- /include/n64/PR/rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/rsp.h -------------------------------------------------------------------------------- /include/n64/PR/rsp_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/rsp_ipc.h -------------------------------------------------------------------------------- /include/n64/PR/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/sched.h -------------------------------------------------------------------------------- /include/n64/PR/sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/sp.h -------------------------------------------------------------------------------- /include/n64/PR/sptask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/sptask.h -------------------------------------------------------------------------------- /include/n64/PR/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/trace.h -------------------------------------------------------------------------------- /include/n64/PR/ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/PR/ucode.h -------------------------------------------------------------------------------- /include/n64/ultra64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/n64/ultra64.h -------------------------------------------------------------------------------- /include/object_fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/object_fields.h -------------------------------------------------------------------------------- /include/platform_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/platform_info.h -------------------------------------------------------------------------------- /include/rnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/rnc.h -------------------------------------------------------------------------------- /include/segment_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/segment_names.h -------------------------------------------------------------------------------- /include/segments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/segments.h -------------------------------------------------------------------------------- /include/seq_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/seq_ids.h -------------------------------------------------------------------------------- /include/seq_macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/seq_macros.inc -------------------------------------------------------------------------------- /include/sm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/sm64.h -------------------------------------------------------------------------------- /include/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/sounds.h -------------------------------------------------------------------------------- /include/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/textures.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/include/types.h -------------------------------------------------------------------------------- /layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/layout.json -------------------------------------------------------------------------------- /levels/bob/Map1/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/bob/Map1/header.h -------------------------------------------------------------------------------- /levels/bob/Map1/texscroll.inc.c: -------------------------------------------------------------------------------- 1 | void scroll_bob_level_dl_Map1() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /levels/bob/Map1/texscroll.inc.h: -------------------------------------------------------------------------------- 1 | 2 | extern void scroll_bob_level_dl_Map1(); 3 | 4 | -------------------------------------------------------------------------------- /levels/bob/area_1/spline.inc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /levels/bob/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/bob/geo.c -------------------------------------------------------------------------------- /levels/bob/geo.inc.c: -------------------------------------------------------------------------------- 1 | #include "levels/bob/area_1/geo.inc.c" 2 | -------------------------------------------------------------------------------- /levels/bob/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/bob/header.h -------------------------------------------------------------------------------- /levels/bob/header.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/bob/header.inc.h -------------------------------------------------------------------------------- /levels/bob/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/bob/level.yaml -------------------------------------------------------------------------------- /levels/bob/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/bob/leveldata.c -------------------------------------------------------------------------------- /levels/bob/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/bob/model.inc.c -------------------------------------------------------------------------------- /levels/bob/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/bob/script.c -------------------------------------------------------------------------------- /levels/bob/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/bob/texture.inc.c -------------------------------------------------------------------------------- /levels/course_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/course_defines.h -------------------------------------------------------------------------------- /levels/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/entry.c -------------------------------------------------------------------------------- /levels/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/entry.h -------------------------------------------------------------------------------- /levels/intro/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/intro/geo.c -------------------------------------------------------------------------------- /levels/intro/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/intro/header.h -------------------------------------------------------------------------------- /levels/intro/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/intro/leveldata.c -------------------------------------------------------------------------------- /levels/intro/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/intro/script.c -------------------------------------------------------------------------------- /levels/level_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/level_defines.h -------------------------------------------------------------------------------- /levels/level_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/level_rules.mk -------------------------------------------------------------------------------- /levels/menu/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/menu/geo.c -------------------------------------------------------------------------------- /levels/menu/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/menu/header.h -------------------------------------------------------------------------------- /levels/menu/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/menu/leveldata.c -------------------------------------------------------------------------------- /levels/menu/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/menu/script.c -------------------------------------------------------------------------------- /levels/scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/scripts.c -------------------------------------------------------------------------------- /levels/scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/levels/scripts.h -------------------------------------------------------------------------------- /lib/PR/audio/aspMain.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/PR/audio/aspMain.bin -------------------------------------------------------------------------------- /lib/PR/audio/n_aspMain.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/PR/audio/n_aspMain.o -------------------------------------------------------------------------------- /lib/PR/hvqm/hvqm2sp1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/PR/hvqm/hvqm2sp1.o -------------------------------------------------------------------------------- /lib/PR/hvqm/hvqm2sp2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/PR/hvqm/hvqm2sp2.o -------------------------------------------------------------------------------- /lib/aspMain.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/aspMain.s -------------------------------------------------------------------------------- /lib/gcclib/trap/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/gcclib/trap/libgcc.a -------------------------------------------------------------------------------- /lib/ique/libultra.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/ique/libultra.a -------------------------------------------------------------------------------- /lib/ique/libultra_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/ique/libultra_d.a -------------------------------------------------------------------------------- /lib/ique/libultra_rom.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/ique/libultra_rom.a -------------------------------------------------------------------------------- /lib/libhvqm2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/libhvqm2.a -------------------------------------------------------------------------------- /lib/libnustd.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/libnustd.a -------------------------------------------------------------------------------- /lib/librtc/librtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/librtc/librtc.c -------------------------------------------------------------------------------- /lib/librtc/librtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/librtc/librtc.h -------------------------------------------------------------------------------- /lib/n64/libultra.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/n64/libultra.a -------------------------------------------------------------------------------- /lib/n64/libultra_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/n64/libultra_d.a -------------------------------------------------------------------------------- /lib/n64/libultra_rom.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/n64/libultra_rom.a -------------------------------------------------------------------------------- /lib/rsp.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/rsp.old -------------------------------------------------------------------------------- /lib/rspboot.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/lib/rspboot.o -------------------------------------------------------------------------------- /rsp/audio.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/rsp/audio.s -------------------------------------------------------------------------------- /rsp/rsp_defs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/rsp/rsp_defs.inc -------------------------------------------------------------------------------- /rspdata.inc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/rspdata.inc.ld -------------------------------------------------------------------------------- /rsptext.inc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/rsptext.inc.ld -------------------------------------------------------------------------------- /sm64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/sm64.ld -------------------------------------------------------------------------------- /sound/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/sound/README.md -------------------------------------------------------------------------------- /sound/sequences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/sound/sequences.json -------------------------------------------------------------------------------- /sound/sound_data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/sound/sound_data.s -------------------------------------------------------------------------------- /src/audio/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/data.c -------------------------------------------------------------------------------- /src/audio/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/data.h -------------------------------------------------------------------------------- /src/audio/effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/effects.c -------------------------------------------------------------------------------- /src/audio/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/effects.h -------------------------------------------------------------------------------- /src/audio/external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/external.c -------------------------------------------------------------------------------- /src/audio/external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/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/rovertronic/Mario-Builder-64/HEAD/src/audio/heap.c -------------------------------------------------------------------------------- /src/audio/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/heap.h -------------------------------------------------------------------------------- /src/audio/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/internal.h -------------------------------------------------------------------------------- /src/audio/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/load.c -------------------------------------------------------------------------------- /src/audio/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/load.h -------------------------------------------------------------------------------- /src/audio/load_sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/load_sh.c -------------------------------------------------------------------------------- /src/audio/playback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/playback.c -------------------------------------------------------------------------------- /src/audio/playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/playback.h -------------------------------------------------------------------------------- /src/audio/port_eu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/port_eu.c -------------------------------------------------------------------------------- /src/audio/port_sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/port_sh.c -------------------------------------------------------------------------------- /src/audio/seqplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/seqplayer.c -------------------------------------------------------------------------------- /src/audio/seqplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/seqplayer.h -------------------------------------------------------------------------------- /src/audio/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/synthesis.c -------------------------------------------------------------------------------- /src/audio/synthesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/synthesis.h -------------------------------------------------------------------------------- /src/audio/synthesis_sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/audio/synthesis_sh.c -------------------------------------------------------------------------------- /src/boot/decompress.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/boot/decompress.s -------------------------------------------------------------------------------- /src/boot/dma_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/boot/dma_async.c -------------------------------------------------------------------------------- /src/boot/dma_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/boot/dma_async.h -------------------------------------------------------------------------------- /src/boot/lz4t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/boot/lz4t.c -------------------------------------------------------------------------------- /src/boot/lz4t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/boot/lz4t.h -------------------------------------------------------------------------------- /src/boot/lz4t_fast.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/boot/lz4t_fast.s -------------------------------------------------------------------------------- /src/boot/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/boot/main.c -------------------------------------------------------------------------------- /src/boot/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/boot/memory.c -------------------------------------------------------------------------------- /src/boot/rnc1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/boot/rnc1.s -------------------------------------------------------------------------------- /src/boot/rnc2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/boot/rnc2.s -------------------------------------------------------------------------------- /src/boot/slidec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/boot/slidec.h -------------------------------------------------------------------------------- /src/boot/slidec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/boot/slidec.s -------------------------------------------------------------------------------- /src/buffers/adpcmbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/buffers/adpcmbuf.c -------------------------------------------------------------------------------- /src/buffers/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/buffers/buffers.c -------------------------------------------------------------------------------- /src/buffers/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/buffers/buffers.h -------------------------------------------------------------------------------- /src/buffers/hvqbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/buffers/hvqbuf.c -------------------------------------------------------------------------------- /src/buffers/hvqmwork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/buffers/hvqmwork.c -------------------------------------------------------------------------------- /src/buffers/zbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/buffers/zbuffer.c -------------------------------------------------------------------------------- /src/buffers/zbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/buffers/zbuffer.h -------------------------------------------------------------------------------- /src/engine/colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/engine/colors.c -------------------------------------------------------------------------------- /src/engine/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/engine/colors.h -------------------------------------------------------------------------------- /src/engine/geo_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/engine/geo_layout.c -------------------------------------------------------------------------------- /src/engine/geo_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/engine/geo_layout.h -------------------------------------------------------------------------------- /src/engine/graph_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/engine/graph_node.c -------------------------------------------------------------------------------- /src/engine/graph_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/engine/graph_node.h -------------------------------------------------------------------------------- /src/engine/math_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/engine/math_util.c -------------------------------------------------------------------------------- /src/engine/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/engine/math_util.h -------------------------------------------------------------------------------- /src/game/_Ldtob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/_Ldtob.c -------------------------------------------------------------------------------- /src/game/_Litob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/_Litob.c -------------------------------------------------------------------------------- /src/game/_Printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/_Printf.c -------------------------------------------------------------------------------- /src/game/area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/area.c -------------------------------------------------------------------------------- /src/game/area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/area.h -------------------------------------------------------------------------------- /src/game/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/camera.c -------------------------------------------------------------------------------- /src/game/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/camera.h -------------------------------------------------------------------------------- /src/game/crash_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/crash_screen.c -------------------------------------------------------------------------------- /src/game/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/debug.c -------------------------------------------------------------------------------- /src/game/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/debug.h -------------------------------------------------------------------------------- /src/game/debug_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/debug_box.c -------------------------------------------------------------------------------- /src/game/debug_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/debug_box.h -------------------------------------------------------------------------------- /src/game/emutest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/emutest.c -------------------------------------------------------------------------------- /src/game/emutest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/emutest.h -------------------------------------------------------------------------------- /src/game/emutest_vc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/emutest_vc.h -------------------------------------------------------------------------------- /src/game/envfx_bubbles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/envfx_bubbles.c -------------------------------------------------------------------------------- /src/game/envfx_bubbles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/envfx_bubbles.h -------------------------------------------------------------------------------- /src/game/envfx_snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/envfx_snow.c -------------------------------------------------------------------------------- /src/game/envfx_snow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/envfx_snow.h -------------------------------------------------------------------------------- /src/game/fasttext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/fasttext.c -------------------------------------------------------------------------------- /src/game/fasttext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/fasttext.h -------------------------------------------------------------------------------- /src/game/game_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/game_init.c -------------------------------------------------------------------------------- /src/game/game_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/game_init.h -------------------------------------------------------------------------------- /src/game/geo_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/geo_misc.c -------------------------------------------------------------------------------- /src/game/geo_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/geo_misc.h -------------------------------------------------------------------------------- /src/game/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/hud.c -------------------------------------------------------------------------------- /src/game/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/hud.h -------------------------------------------------------------------------------- /src/game/ingame_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/ingame_menu.c -------------------------------------------------------------------------------- /src/game/ingame_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/ingame_menu.h -------------------------------------------------------------------------------- /src/game/insn_disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/insn_disasm.c -------------------------------------------------------------------------------- /src/game/interaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/interaction.c -------------------------------------------------------------------------------- /src/game/interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/interaction.h -------------------------------------------------------------------------------- /src/game/level_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/level_geo.c -------------------------------------------------------------------------------- /src/game/level_geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/level_geo.h -------------------------------------------------------------------------------- /src/game/level_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/level_update.c -------------------------------------------------------------------------------- /src/game/level_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/level_update.h -------------------------------------------------------------------------------- /src/game/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/main.h -------------------------------------------------------------------------------- /src/game/map_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/map_parser.c -------------------------------------------------------------------------------- /src/game/mario.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/mario.c -------------------------------------------------------------------------------- /src/game/mario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/mario.h -------------------------------------------------------------------------------- /src/game/mario_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/mario_misc.c -------------------------------------------------------------------------------- /src/game/mario_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/mario_misc.h -------------------------------------------------------------------------------- /src/game/mario_step.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/mario_step.c -------------------------------------------------------------------------------- /src/game/mario_step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/mario_step.h -------------------------------------------------------------------------------- /src/game/materials.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/materials.c -------------------------------------------------------------------------------- /src/game/materials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/materials.h -------------------------------------------------------------------------------- /src/game/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/memory.h -------------------------------------------------------------------------------- /src/game/minigame_menu.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/game/minigame_menu.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/game/nupiinitsram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/nupiinitsram.c -------------------------------------------------------------------------------- /src/game/obj_behaviors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/obj_behaviors.c -------------------------------------------------------------------------------- /src/game/obj_behaviors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/obj_behaviors.h -------------------------------------------------------------------------------- /src/game/paintings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/paintings.c -------------------------------------------------------------------------------- /src/game/paintings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/paintings.h -------------------------------------------------------------------------------- /src/game/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/print.c -------------------------------------------------------------------------------- /src/game/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/print.h -------------------------------------------------------------------------------- /src/game/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/printf.h -------------------------------------------------------------------------------- /src/game/profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/profiling.c -------------------------------------------------------------------------------- /src/game/profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/profiling.h -------------------------------------------------------------------------------- /src/game/puppycam2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/puppycam2.c -------------------------------------------------------------------------------- /src/game/puppycam2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/puppycam2.h -------------------------------------------------------------------------------- /src/game/puppycamold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/puppycamold.c -------------------------------------------------------------------------------- /src/game/puppycamold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/puppycamold.h -------------------------------------------------------------------------------- /src/game/puppyprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/puppyprint.c -------------------------------------------------------------------------------- /src/game/puppyprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/puppyprint.h -------------------------------------------------------------------------------- /src/game/rumble_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/rumble_init.c -------------------------------------------------------------------------------- /src/game/rumble_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/rumble_init.h -------------------------------------------------------------------------------- /src/game/save_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/save_file.c -------------------------------------------------------------------------------- /src/game/save_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/save_file.h -------------------------------------------------------------------------------- /src/game/segment2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/segment2.h -------------------------------------------------------------------------------- /src/game/segment7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/segment7.h -------------------------------------------------------------------------------- /src/game/shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/shadow.c -------------------------------------------------------------------------------- /src/game/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/shadow.h -------------------------------------------------------------------------------- /src/game/skybox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/skybox.c -------------------------------------------------------------------------------- /src/game/skybox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/skybox.h -------------------------------------------------------------------------------- /src/game/sound_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/sound_init.c -------------------------------------------------------------------------------- /src/game/sound_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/sound_init.h -------------------------------------------------------------------------------- /src/game/spawn_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/spawn_object.c -------------------------------------------------------------------------------- /src/game/spawn_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/spawn_object.h -------------------------------------------------------------------------------- /src/game/spawn_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/spawn_sound.c -------------------------------------------------------------------------------- /src/game/spawn_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/spawn_sound.h -------------------------------------------------------------------------------- /src/game/sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/sram.h -------------------------------------------------------------------------------- /src/game/texscroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/texscroll.c -------------------------------------------------------------------------------- /src/game/texscroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/texscroll.h -------------------------------------------------------------------------------- /src/game/tile_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/tile_scroll.c -------------------------------------------------------------------------------- /src/game/tile_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/tile_scroll.h -------------------------------------------------------------------------------- /src/game/vc_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/vc_bin.h -------------------------------------------------------------------------------- /src/game/vc_ultra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/vc_ultra.c -------------------------------------------------------------------------------- /src/game/vc_ultra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/vc_ultra.h -------------------------------------------------------------------------------- /src/game/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/version.c -------------------------------------------------------------------------------- /src/game/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/game/version.h -------------------------------------------------------------------------------- /src/goddard/gd_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/gd_macros.h -------------------------------------------------------------------------------- /src/goddard/gd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/gd_main.c -------------------------------------------------------------------------------- /src/goddard/gd_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/gd_main.h -------------------------------------------------------------------------------- /src/goddard/gd_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/gd_math.c -------------------------------------------------------------------------------- /src/goddard/gd_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/gd_math.h -------------------------------------------------------------------------------- /src/goddard/gd_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/gd_memory.c -------------------------------------------------------------------------------- /src/goddard/gd_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/gd_memory.h -------------------------------------------------------------------------------- /src/goddard/gd_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/gd_types.h -------------------------------------------------------------------------------- /src/goddard/joints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/joints.c -------------------------------------------------------------------------------- /src/goddard/joints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/joints.h -------------------------------------------------------------------------------- /src/goddard/objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/objects.c -------------------------------------------------------------------------------- /src/goddard/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/objects.h -------------------------------------------------------------------------------- /src/goddard/old_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/old_menu.c -------------------------------------------------------------------------------- /src/goddard/old_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/old_menu.h -------------------------------------------------------------------------------- /src/goddard/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/particles.c -------------------------------------------------------------------------------- /src/goddard/particles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/particles.h -------------------------------------------------------------------------------- /src/goddard/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/renderer.c -------------------------------------------------------------------------------- /src/goddard/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/renderer.h -------------------------------------------------------------------------------- /src/goddard/sfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/sfx.c -------------------------------------------------------------------------------- /src/goddard/sfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/sfx.h -------------------------------------------------------------------------------- /src/goddard/skin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/skin.c -------------------------------------------------------------------------------- /src/goddard/skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/goddard/skin.h -------------------------------------------------------------------------------- /src/hvqm/cfbkeep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/hvqm/cfbkeep.c -------------------------------------------------------------------------------- /src/hvqm/getrecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/hvqm/getrecord.c -------------------------------------------------------------------------------- /src/hvqm/hvqm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/hvqm/hvqm.c -------------------------------------------------------------------------------- /src/hvqm/hvqm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/hvqm/hvqm.h -------------------------------------------------------------------------------- /src/hvqm/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/hvqm/system.c -------------------------------------------------------------------------------- /src/hvqm/timekeeper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/hvqm/timekeeper.c -------------------------------------------------------------------------------- /src/libcart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/LICENSE -------------------------------------------------------------------------------- /src/libcart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/README.md -------------------------------------------------------------------------------- /src/libcart/ff/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/ff/diskio.c -------------------------------------------------------------------------------- /src/libcart/ff/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/ff/diskio.h -------------------------------------------------------------------------------- /src/libcart/ff/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/ff/ff.c -------------------------------------------------------------------------------- /src/libcart/ff/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/ff/ff.h -------------------------------------------------------------------------------- /src/libcart/ff/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/ff/ffconf.h -------------------------------------------------------------------------------- /src/libcart/ff/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/ff/memcmp.c -------------------------------------------------------------------------------- /src/libcart/ff/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/ff/memset.c -------------------------------------------------------------------------------- /src/libcart/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/makefile -------------------------------------------------------------------------------- /src/libcart/src/cart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/cart.c -------------------------------------------------------------------------------- /src/libcart/src/ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/ci.c -------------------------------------------------------------------------------- /src/libcart/src/ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/ci.h -------------------------------------------------------------------------------- /src/libcart/src/ciexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/ciexit.c -------------------------------------------------------------------------------- /src/libcart/src/ciinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/ciinit.c -------------------------------------------------------------------------------- /src/libcart/src/ed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/ed.h -------------------------------------------------------------------------------- /src/libcart/src/edcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/edcard.c -------------------------------------------------------------------------------- /src/libcart/src/edexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/edexit.c -------------------------------------------------------------------------------- /src/libcart/src/edinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/edinit.c -------------------------------------------------------------------------------- /src/libcart/src/edx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/edx.h -------------------------------------------------------------------------------- /src/libcart/src/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/sc.c -------------------------------------------------------------------------------- /src/libcart/src/sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/sc.h -------------------------------------------------------------------------------- /src/libcart/src/scexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/scexit.c -------------------------------------------------------------------------------- /src/libcart/src/scinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/scinit.c -------------------------------------------------------------------------------- /src/libcart/src/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/sd.c -------------------------------------------------------------------------------- /src/libcart/src/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/libcart/src/sd.h -------------------------------------------------------------------------------- /src/mb64/boundary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/boundary.c -------------------------------------------------------------------------------- /src/mb64/boundary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/boundary.h -------------------------------------------------------------------------------- /src/mb64/collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/collision.c -------------------------------------------------------------------------------- /src/mb64/collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/collision.h -------------------------------------------------------------------------------- /src/mb64/compatibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/compatibility.c -------------------------------------------------------------------------------- /src/mb64/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/data.c -------------------------------------------------------------------------------- /src/mb64/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/data.h -------------------------------------------------------------------------------- /src/mb64/display_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/display_funcs.c -------------------------------------------------------------------------------- /src/mb64/display_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/display_funcs.h -------------------------------------------------------------------------------- /src/mb64/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/file.c -------------------------------------------------------------------------------- /src/mb64/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/file.h -------------------------------------------------------------------------------- /src/mb64/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/gfx.c -------------------------------------------------------------------------------- /src/mb64/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/gfx.h -------------------------------------------------------------------------------- /src/mb64/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/main.c -------------------------------------------------------------------------------- /src/mb64/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/main.h -------------------------------------------------------------------------------- /src/mb64/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/menu.h -------------------------------------------------------------------------------- /src/mb64/menu_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/menu_dialog.c -------------------------------------------------------------------------------- /src/mb64/menu_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/menu_engine.c -------------------------------------------------------------------------------- /src/mb64/menu_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/menu_engine.h -------------------------------------------------------------------------------- /src/mb64/menu_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/menu_main.c -------------------------------------------------------------------------------- /src/mb64/menu_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/menu_misc.c -------------------------------------------------------------------------------- /src/mb64/menu_pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/menu_pause.c -------------------------------------------------------------------------------- /src/mb64/menu_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/menu_settings.c -------------------------------------------------------------------------------- /src/mb64/menu_toolbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/menu_toolbox.c -------------------------------------------------------------------------------- /src/mb64/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/structs.h -------------------------------------------------------------------------------- /src/mb64/trajectory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/trajectory.c -------------------------------------------------------------------------------- /src/mb64/trajectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/mb64/trajectory.h -------------------------------------------------------------------------------- /src/menu/file_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/menu/file_select.c -------------------------------------------------------------------------------- /src/menu/file_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/menu/file_select.h -------------------------------------------------------------------------------- /src/menu/intro_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/menu/intro_geo.c -------------------------------------------------------------------------------- /src/menu/intro_geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/menu/intro_geo.h -------------------------------------------------------------------------------- /src/menu/star_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/menu/star_select.c -------------------------------------------------------------------------------- /src/menu/star_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/menu/star_select.h -------------------------------------------------------------------------------- /src/menu/title_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/menu/title_screen.c -------------------------------------------------------------------------------- /src/menu/title_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/menu/title_screen.h -------------------------------------------------------------------------------- /src/s2d_engine/.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | 3 | -------------------------------------------------------------------------------- /src/s2d_engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/s2d_engine/README.md -------------------------------------------------------------------------------- /src/s2d_engine/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/s2d_engine/debug.h -------------------------------------------------------------------------------- /src/s2d_engine/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/s2d_engine/init.c -------------------------------------------------------------------------------- /src/s2d_engine/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/s2d_engine/init.h -------------------------------------------------------------------------------- /src/s2d_engine/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/s2d_engine/mtx.c -------------------------------------------------------------------------------- /src/s2d_engine/mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/s2d_engine/mtx.h -------------------------------------------------------------------------------- /src/s2d_engine/s2d_kerning_table.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/usb/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/usb/debug.c -------------------------------------------------------------------------------- /src/usb/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/usb/debug.h -------------------------------------------------------------------------------- /src/usb/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/usb/usb.c -------------------------------------------------------------------------------- /src/usb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/src/usb/usb.h -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/BinPNG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/BinPNG.py -------------------------------------------------------------------------------- /tools/FlipsSrc/Flips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/FlipsSrc/Flips.cpp -------------------------------------------------------------------------------- /tools/FlipsSrc/Flips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/FlipsSrc/Flips.h -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/aifc_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/aifc_decode.c -------------------------------------------------------------------------------- /tools/apply_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/apply_patch.sh -------------------------------------------------------------------------------- /tools/armips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/armips.cpp -------------------------------------------------------------------------------- /tools/assemble_sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/assemble_sound.py -------------------------------------------------------------------------------- /tools/audiofile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/audiofile/Makefile -------------------------------------------------------------------------------- /tools/calc_bss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/calc_bss.sh -------------------------------------------------------------------------------- /tools/clang-tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/clang-tidy.sh -------------------------------------------------------------------------------- /tools/create_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/create_patch.sh -------------------------------------------------------------------------------- /tools/deflatepack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/deflatepack.c -------------------------------------------------------------------------------- /tools/detect_baseroms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/detect_baseroms.py -------------------------------------------------------------------------------- /tools/filesizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/filesizer.c -------------------------------------------------------------------------------- /tools/fixlights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/fixlights.py -------------------------------------------------------------------------------- /tools/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/format.sh -------------------------------------------------------------------------------- /tools/getGoddardSize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/getGoddardSize.py -------------------------------------------------------------------------------- /tools/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/hashtable.c -------------------------------------------------------------------------------- /tools/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/hashtable.h -------------------------------------------------------------------------------- /tools/libbfd-2.30.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/libbfd-2.30.so -------------------------------------------------------------------------------- /tools/libdeflate/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/libdeflate/utils.c -------------------------------------------------------------------------------- /tools/libmio0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/libmio0.c -------------------------------------------------------------------------------- /tools/libmio0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/libmio0.h -------------------------------------------------------------------------------- /tools/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/lz4.c -------------------------------------------------------------------------------- /tools/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/lz4.h -------------------------------------------------------------------------------- /tools/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/lz4hc.c -------------------------------------------------------------------------------- /tools/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/lz4hc.h -------------------------------------------------------------------------------- /tools/lz4tpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/lz4tpack.c -------------------------------------------------------------------------------- /tools/make_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/make_version.sh -------------------------------------------------------------------------------- /tools/mapPacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/mapPacker.py -------------------------------------------------------------------------------- /tools/mips64-elf-ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/mips64-elf-ld -------------------------------------------------------------------------------- /tools/mips64-elf-ld-arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/mips64-elf-ld-arm -------------------------------------------------------------------------------- /tools/n64cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/n64cksum.c -------------------------------------------------------------------------------- /tools/n64cksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/n64cksum.h -------------------------------------------------------------------------------- /tools/n64graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/n64graphics.c -------------------------------------------------------------------------------- /tools/n64graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/n64graphics.h -------------------------------------------------------------------------------- /tools/revert_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/revert_patch.sh -------------------------------------------------------------------------------- /tools/rncpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/rncpack.c -------------------------------------------------------------------------------- /tools/romalign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/romalign -------------------------------------------------------------------------------- /tools/seq_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/seq_decoder.py -------------------------------------------------------------------------------- /tools/skyconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/skyconv.c -------------------------------------------------------------------------------- /tools/slienc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/slienc.c -------------------------------------------------------------------------------- /tools/sm64tools.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/sm64tools.LICENSE -------------------------------------------------------------------------------- /tools/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/stb/stb_image.h -------------------------------------------------------------------------------- /tools/textconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/textconv.c -------------------------------------------------------------------------------- /tools/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/utf8.c -------------------------------------------------------------------------------- /tools/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/utf8.h -------------------------------------------------------------------------------- /tools/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/utils.c -------------------------------------------------------------------------------- /tools/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/tools/utils.h -------------------------------------------------------------------------------- /util.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovertronic/Mario-Builder-64/HEAD/util.mk --------------------------------------------------------------------------------