GameOfLife.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
    void Start()
    {
        state = GameOfLifeBehaviour.start ();
    }

Usage Example

Example #1
0
        static double CalculateGenerations(bool[] field)
        {
            GameOfLife game = PrepareGame(field, 35, 15, 40, 80);

            bool[][] pitch = game.CurrentPitch;

            return(game.Start());
        }
All Usage Examples Of GameOfLife::Start
GameOfLife