diff --git a/source/Trek-12/Models/Cell.cs b/source/Trek-12/Models/Cell.cs index 6bd75ef..182876a 100644 --- a/source/Trek-12/Models/Cell.cs +++ b/source/Trek-12/Models/Cell.cs @@ -1,8 +1,22 @@ namespace Models; -public class Cell +public class Cell : Position { - private double x; - private double y; - private string back; + 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) + { + } } \ No newline at end of file