예제 #1
0
파일: Specials.cs 프로젝트: k0204/Harmony
 static void Prefix(ConcreteClass __instance, string def, AnotherStruct loc)
 {
     Console.WriteLine("ConcreteClass_Patch.Prefix");
 }
예제 #2
0
파일: Specials.cs 프로젝트: k0204/Harmony
 public override SomeStruct Method(string def, AnotherStruct loc)
 {
     return(true);
 }
예제 #3
0
 static void Prefix(ConcreteClass __instance, string def, AnotherStruct loc)
 {
     TestTools.Log("ConcreteClass_Patch.Method.Prefix");
 }
예제 #4
0
파일: Specials.cs 프로젝트: k0204/Harmony
 public virtual SomeStruct Method(string checkingDef, AnotherStruct loc)
 {
     return(SomeStruct.WasAccepted);
 }
예제 #5
0
 public virtual SomeStruct Method(string originalDef, AnotherStruct loc)
 {
     return(SomeStruct.WasAccepted);
 }