Beispiel #1
0
 public void Fill(ConsoleTile fill, CoordRect where)
 {
     map.SetAt(where.GetPosition(), where.GetSize(), fill);
 }
Beispiel #2
0
 public Map2d(Coord size, ConsoleTile fill)
 {
     SetSize(size);
     Fill(fill);
 }
Beispiel #3
0
 public void Fill(ConsoleTile fill)
 {
     map.Fill(fill);
 }
 static ConsoleTile()
 {
     DefaultTile = new ConsoleTile('?', Console.ForegroundColor, Console.BackgroundColor);
 }