overcomplicated shit

This commit is contained in:
NotAKidoS 2023-01-03 01:20:05 -06:00
parent 84cf4c0875
commit 72c9f12376
6 changed files with 458 additions and 90 deletions

View file

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
using ABI_RC.Core.Savior;
namespace NAK.Melons.MenuScalePatch.Helpers;
public class MSP_MenuInfo
{
//Shared Info
public static float ScaleFactor = 1f;
public static Transform CameraTransform;
//Settings...?
public static bool WorldAnchorQM;
//if other mods need to disable?
public static bool DisableQMHelper;
public static bool DisableQMHelper_VR;
public static bool DisableMMHelper;
public static bool DisableMMHelper_VR;
}