示例#1
0
		public static void AddPatch(string index, PatchDelegate patchDelegate)
		{
			AllPatches.Add(new Patch(index, patchDelegate));
		}
示例#2
0
		public Patch(string index, PatchDelegate patchDelegate)
		{
			Index = index;
			PatchDelegate = patchDelegate;
		}
 public static void Add(string signiture, PatchDelegate method)
 {
     patches[signiture] = method;
 }