Пример #1
0
 public static void PostFix()
 {
     Patcher.Run(() =>
     {
         SituSlotController.Clear();
     });
 }
Пример #2
0
 public static void Prefix(int ___beatCounter)
 {
     Patcher.Run(() =>
     {
         if (___beatCounter >= 19) // It will turn into 20 this beat
         {
             SituSlotController.DoFillSlots();
         }
     });
 }