예제 #1
0
 public Evt_GrabAndGive(SmartCharacter giver, SmartCharacter recipient, SmartTable table)
     : base(giver, recipient, table)
 {
     this.giver = giver;
     this.recipient = recipient;
     this.table = table;
 }
예제 #2
0
 public Evt_GetBall(SmartCharacter grabber, SmartTable table)
     : base(grabber, table)
 {
     this.grabber = grabber;
     this.table = table;
 }