Ejemplo n.º 1
0
    void ResolveMatch()
    {
        IReward reward = null;

        if (currentMatchCondition.ResolveMatch(matchCandidates, out reward))
        {
            CorrectMatch(reward);
        }
        else
        {
            FalseMatch();
        }
    }