コード例 #1
0
ファイル: Location.Events.cs プロジェクト: rotators/fomono
 public LocationEnterEventArgs(Location location, IList<Critter> group, ushort entrance)
     : base(location)
 {
     Group = group;
     Entrance = entrance;
 }
コード例 #2
0
ファイル: Location.Events.cs プロジェクト: rotators/fomono
 public LocationEventArgs(Location location)
 {
     this.Location = location;
 }
コード例 #3
0
ファイル: Location.Events.cs プロジェクト: rotators/fomono
 public LocationFinishEventArgs(Location location, bool to_delete)
     : base(location)
 {
     this.ToDelete = to_delete;
 }