示例#1
0
    /// <summary>
    /// Hook method to change score value.
    /// Being a local player this hook going notify score display observer
    /// </summary>
    public void OnScoreChange(int value)
    {
        _score = value;

        if (isLocalPlayer)
        {
            _scoreObserver.OnNotify(_score);
        }
    }