GameOfLife.Start C# (CSharp) 메소드

Start() 공개 메소드

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

Usage 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