using System.Reflection; using Aki.Reflection.Patching; using Comfort.Common; using EFT; namespace Terkoiz.Freecam { public class FreecamPatch : ModulePatch { protected override MethodBase GetTargetMethod() { return typeof(GameWorld).GetMethod("OnGameStarted", BindingFlags.Public | BindingFlags.Instance); } [PatchPostfix] public static void PatchPostFix() { var gameworld = Singleton.Instance; if (gameworld == null) return; // Add FreeCamController to GameWorld GameObject gameworld.GetOrAddComponent(); } } }