GameOfLife.Update C# (CSharp) Method

Update() public method

public Update ( ) : void
return void
    void Update()
    {
        state = GameOfLifeBehaviour.update (prefab, state);
    }

Usage Example

コード例 #1
0
 public void OneCellShouldDisappearAfterOneIteration()
 {
     game       = new GameOfLife(3, 3);
     game[1, 1] = true;
     game.Update();
     Assert.IsFalse(game[1, 1]);
 }
All Usage Examples Of GameOfLife::Update
GameOfLife