Exemple #1
0
 public LocationEnterEventArgs(Location location, IList<Critter> group, ushort entrance)
     : base(location)
 {
     Group = group;
     Entrance = entrance;
 }
Exemple #2
0
 public LocationEventArgs(Location location)
 {
     this.Location = location;
 }
Exemple #3
0
 public LocationFinishEventArgs(Location location, bool to_delete)
     : base(location)
 {
     this.ToDelete = to_delete;
 }