Exemplo n.º 1
0
 public void SetRightNeighbor(ElementaryCell rightNeighbor)
 {
     this.rightNeighbor = rightNeighbor;
 }
Exemplo n.º 2
0
        /*
         * public LivingCell(int id, IList<CellularRule> livingRules)
         *  : base(id, LivingStates, livingRules)
         * {
         *  this.cellState = deadState;
         * }*/


        public void SetLeftNeighbor(ElementaryCell leftNeighbor)
        {
            this.leftNeighbor = leftNeighbor;
        }