Sudoque.Game.Engine.Hint.Hint C# (CSharp) Method

Hint() public method

public Hint ( string text, IEnumerable cellIds ) : System.Collections.Generic
text string
cellIds IEnumerable
return System.Collections.Generic
        public Hint(string text, IEnumerable<CellId> cellIds)
        {
            _text = text;
            _cellIds = cellIds;
        }
Hint