🚧 Création de la classe pour la création de la carte

pull/35/head
Rémi LAVERGNE 1 year ago
parent 065f02cf0a
commit fbb9d10036
No known key found for this signature in database
GPG Key ID: CA264B55E97FD220

@ -0,0 +1,14 @@
namespace Models;
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;
}
}
Loading…
Cancel
Save