Ejemplo n.º 1
0
Archivo: World.cs Proyecto: ktj007/mmo
 public void Draw(Graphics g)
 {
     g.SmoothingMode = SmoothingMode.HighQuality;
     Bridges.ForEach(e => e.Draw(g));
     Cities.ForEach(e => e.Draw(g));
     Players.ForEach(e => e.Draw(g));
 }
Ejemplo n.º 2
0
 public void RemoveRegion(string id)
 {
     Regions?.RemoveAll(_ => _.ID == id);
     Bridges?.ForEach(_ => _.Links?.RemoveAll(r => r == id));
     Bridges?.RemoveAll(_ => _.Links == null || _.Links.Count == 0);
 }