SelectRandomLocation() public static method

public static SelectRandomLocation ( ) : Location
return Location
コード例 #1
0
 public Townsperson()
     : base(World.SelectRandomLocation(World.Asteria), GetDefaultName())
 {
     _Description = "A busy townsperson";
     _State       = "running errands";
 }
コード例 #2
0
 public Wanderer()
     : base(World.SelectRandomLocation(), GetDefaultName())
 {
     _Description = "A weary traveler";
     _State       = "walking slowly by";
 }