public static Cell MakeGreenCyclicRGBCell()
        {
            var cell = new CyclicRGBCell(1, 1);

            cell.CurrentState = State.GREEN;
            return(cell);
        }
        public static Cell MakeBlueCyclicRGBCell()
        {
            var cell = new CyclicRGBCell(1, 1);

            cell.CurrentState = State.BLUE;
            return(cell);
        }
        public static Cell MakeRedCyclicRGBCell()
        {
            var cell = new CyclicRGBCell(1, 1);

            cell.CurrentState = State.RED;
            return(cell);
        }