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.
|
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;
|
|
}
|
|
} |