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