예제 #1
0
 public PointOfInterest(int x, int y, PointOfInterestTypes type) : base(x, y)
 {
     Type = type;
 }
예제 #2
0
 private MapBuilder AddPointOfInterest(int x, int y, PointOfInterestTypes type)
 {
     return(AddAction(map => map.AddPointOfInterest(new PointOfInterest(x, y, type))));
 }