コード例 #1
0
ファイル: StateFactory.cs プロジェクト: ggvicentiu/GameOfLife
 public State SetNextTickLifeState(Cell cell)
 {
     var state = cell.State;
     return cell.ChangeStateTo(state.NextState());
 }