Beispiel #1
0
 public void ReturnToPanel(IModel model, ModelEvent_InfoStep e)
 {
     int[] pred1 = e.predicate_1?.ToArray();
     TBeg.context.Clients.Client(this.connectionId)
     .SendAsync("InfoStep1", e.name, pred1, e.selection, e.UserisSpoiler, e.x, e.y, -1);
     Console.WriteLine(e);
 }
Beispiel #2
0
 public void StepBack3(IModel model, ModelEvent_InfoStep e)
 {
     int[] pred1 = e.predicate_1?.ToArray();
     TBeg.context.Clients.Client(this.connectionId)
     .SendAsync("StepBack", e.name, pred1, null, e.selection, e.UserisSpoiler, e.x, e.y, -3);
     Console.WriteLine("StepBack 3:");
     Console.WriteLine(e);
 }