Skip to content

Commit

Permalink
Fixed the missing extractor options for Majora's Mask 3D and pushed a…
Browse files Browse the repository at this point in the history
… new version of the EXE.
  • Loading branch information
MeltyPlayer committed Mar 23, 2023
1 parent dabdafd commit 494cfbd
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using uni.games.halo_wars;
using uni.games.luigis_mansion;
using uni.games.luigis_mansion_3d;
using uni.games.majoras_mask_3d;
using uni.games.mario_kart_double_dash;
using uni.games.midnight_club_2;
using uni.games.ocarina_of_time;
Expand Down Expand Up @@ -63,11 +64,17 @@ public class LuigisMansionOptions
public class LuigisMansion3dOptions
: IExtractorOptions<LuigisMansion3dExtractor> { }

[Verb("majoras_mask_3d",
HelpText = "Extract models from Majora's Mask 3D.")]
public class MajorasMask3dOptions
: IExtractorOptions<MajorasMask3dExtractor> { }

[Verb("mario_kart_double_dash",
HelpText = "Extract models from Mario Kart: Double Dash.")]
public class MarioKartDoubleDashOptions
: IExtractorOptions<MarioKartDoubleDashExtractor> { }


[Verb("midnight_club_2",
HelpText = "Extract models from Midnight Club 2.")]
public class MidnightClub2Options
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using cmb.api;


namespace uni.games.majoras_mask_3d {
public class MajorasMask3dExtractor : IExtractor {
public void ExtractAll()
=> ExtractorUtil.ExtractAll(new MajorasMask3dFileGatherer(),
new CmbModelLoader());
}
}
Binary file modified cli/tools/universal_model_extractor/PenImc_cor3.dll
Binary file not shown.
Binary file not shown.
Binary file modified cli/tools/universal_model_extractor/wpfgfx_cor3.dll
Binary file not shown.

0 comments on commit 494cfbd

Please sign in to comment.