SelectRandomLocation() 공개 정적인 메소드

public static SelectRandomLocation ( ) : Location
리턴 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";
 }