GameStart.Start C# (CSharp) Method

Start() private method

private Start ( ) : void
return void
    void Start()
    {
        LuaManager.Instance.Init ();
    }

Usage Example

Ejemplo n.º 1
0
 private void LauncherUpdate_Completed(object sender, AsyncCompletedEventArgs e)
 {
     if (e.Cancelled)
     {
         PercentageLabel.Text = "업데이트가 취소되었습니다.";
         this.TopMost         = true;
         this.TopMost         = false;
         SetButtonsToDefault();
     }
     else if (GetInitLevel() > 0)
     {
         GameStart.Start();
     }
     else
     {
         RunNewLauncher();
     }
 }
All Usage Examples Of GameStart::Start
GameStart