File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4646 <Compile Include =" CellOverseer.cs" />
4747 <Compile Include =" Enums\CellActionEnum.cs" />
4848 <Compile Include =" Interfaces\ICell.cs" />
49- <Compile Include =" Interfaces\IConsoleWriter.cs" />
49+ <Compile Include =" Interfaces\IUserActionManager.cs" />
50+ <Compile Include =" Interfaces\ICellPrinter.cs" />
5051 <Compile Include =" Interfaces\ICellOverseer.cs" />
5152 <Compile Include =" Interfaces\ISaveLoadManager.cs" />
5253 <Compile Include =" Logic\SaveLoadManager.cs" />
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Linq ;
4+ using System . Text ;
5+ using System . Threading . Tasks ;
6+
7+ namespace CellSimulator . Interfaces
8+ {
9+ public interface ICellPrinter
10+ {
11+ void PrintCells ( IEnumerable < ICell > cellsToPrint ) ;
12+ }
13+ }
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Linq ;
4+ using System . Text ;
5+ using System . Threading . Tasks ;
6+
7+ namespace CellSimulator . Interfaces
8+ {
9+ class IUserActionManager
10+ {
11+ }
12+ }
You can’t perform that action at this time.
0 commit comments