Ejemplo n.º 1
0
 private void UpdateMap(Collection <ReplacementPoint> replacementPoints)
 {
     currentRoom.ReplaceMapPoint(replacementPoints);
     foreach (var point in replacementPoints)
     {
         SetGlyph(point.X, point.Y, point.Character, Color.White);
     }
 }
Ejemplo n.º 2
0
 private void UpdateMap(Collection <ReplacementPoint> replacementPoints)
 {
     currentRoom.ReplaceMapPoint(replacementPoints);
     foreach (var point in replacementPoints)
     {
         this.CellData.SetCharacter(point.X, point.Y, point.Character, CastleGame.GameColor);
     }
 }