You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Trek-12/source/Trek-12/Models/Game/Map.cs

14 lines
272 B

namespace Models.Game;
public class Map
{
public List<Cell> Cells { get; private set; }
public string Background { get; private set; }
public Map(List<Cell> cells, string background)
{
Cells = cells;
Background = background;
}
}