Merge pull request 'classCell' (#34) from classCell into dev

Reviewed-on: #34
Reviewed-by: Remi NEVEU <remi.neveu@etu.uca.fr>
pull/52/head
Remi NEVEU 1 year ago
commit 2faf1dbec7

@ -0,0 +1,22 @@
namespace Models;
public class Cell : Position
{
private int value;
public int Value
{
get => value;
set => value = value;
}
private string background;
public string Background
{
get => background;
set => background = value;
}
public Cell(int x, int y) : base(x, y)
{
}
}
Loading…
Cancel
Save