Cell Kill Method Delta Engine Documentation

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

public void Kill()
Remarks

Tests: GameOfLife.Tests.CellTests
Examples

1 unit tests call GameOfLife.Cell.Kill
[Test, CloseAfterFirstFrame]
public void CellIsDeadAfterCallingKill()
{
    cell.Revive();
    cell.Kill();
    Assert.IsFalse(cell.IsAlive);
}
See Also