예제 #1
0
        public static void Run()
        {
            Harmony.DEBUG = true;

            ReturnColorTest.Run();

            int[] values = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 };
            foreach (var n in values)
            {
                Specials.Test_Patch_Returning_Structs(n, "S");
            }
            foreach (var n in values)
            {
                Specials.Test_Patch_Returning_Structs(n, "I");
            }
        }