Exemplo n.º 1
0
        public CellSet(CellSetType cellSetType)
        {
            Coordinates = new Coordinates[9];

            CellSetType    = cellSetType;
            IntersectsWith = new List <CellSetType>();

            PopulateData();

            PopulateIntersections();
        }
Exemplo n.º 2
0
 private void Validate(CellSetType cellSetType)
 {
     Validate(_cellSets[cellSetType].Coordinates);
 }
Exemplo n.º 3
0
 // Called from Puzzle constructor
 internal CellSet(Puzzle owner, CellSetType type, int index)
 {
     Owner = owner;
     Type  = type;
     Index = index;
 }