GameOfLifeTests LiveCellWithFewerThanTwoLiveNeighborsDies Method Delta Engine Documentation

Namespace: GameOfLife.Tests
Assembly: GameOfLife.Tests (in GameOfLife.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void LiveCellWithFewerThanTwoLiveNeighborsDies()
Examples

[Test, CloseAfterFirstFrame]
public void LiveCellWithFewerThanTwoLiveNeighborsDies()
{
    InitializeGameOfLife(new Size(3));
    gameOfLife.BatchReviveCells(new[,] { { 1, 1 }, { 2, 2 } });
See Also