Exemplo n.º 1
0
        public static void Entry()
        {
            HarmonyInstance = HarmonyInstance.Create("taylor.brett.TheMantaMod.mod");
            HarmonyInstance.PatchAll(Assembly.GetExecutingAssembly());
            MantaAssetLoader.LoadAssets();
            MantaMod manta = new MantaMod();

            manta.Patch();
        }
Exemplo n.º 2
0
        private static void LoadMantaFramework()
        {
            var harmonyInstance = new Harmony("taylor.brett.TheMantaMod.mod");

            harmonyInstance.PatchAll(Assembly.GetExecutingAssembly());

            Assets.Instance = new Assets();

            var manta = new MantaMod();

            manta.Patch();
        }