SocialManager.PostScore C# (CSharp) Method

PostScore() public method

public PostScore ( string board, int score ) : void
board string
score int
return void
    public void PostScore(string board, int score)
    {
        #if (UNITY_IPHONE || UNITY_ANDROID)
        if (Array.IndexOf (NAMES, board) < 0 || !Social.localUser.authenticated)
            return;

        busy = true;
        Social.ReportScore(score, board, (bool success) => {
            busy = false;
        });
        #endif
    }