Server.Game.GameLoop.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
        public void Start()
        {
            if(!this.running) {
                this.running = true;

                if(this.thread == null) {
                    this.thread = new Thread(this.Loop);
                }
                this.thread.Start();
            }
        }