Exemple #1
0
 public override void LoadComponents(Fez game)
 {
     if (SpeedrunMode) {
         ServiceHelper.AddComponent(new SpeedrunInfo(ServiceHelper.Game));
     }
     if (ToolAssistedSpeedrun) {
         ServiceHelper.AddComponent(new TASComponent(ServiceHelper.Game));
     }
 }
Exemple #2
0
 internal static void LoadComponents(Fez game)
 {
     ServiceHelper.AddComponent(new ModGUIHost(game));
 }
Exemple #3
0
 public virtual void LoadComponents(Fez game)
 {
 }
Exemple #4
0
 internal static void LoadComponentReplacements(Fez game)
 {
     ServiceHelperHooks.ReplacementServices["FezEngine.Services.MouseStateManager"]    = new ModMouseStateManager();
     ServiceHelperHooks.ReplacementServices["FezEngine.Services.KeyboardStateManager"] = new ModKeyboardStateManager();
 }