UnityEngine.SocialPlatforms.Range.Range C# (CSharp) Méthode

Range() public méthode

Constructor for a score range, the range starts from a specific value and contains a maxium score count.

public Range ( int fromValue, int valueCount ) : System
fromValue int The minimum allowed value.
valueCount int The number of possible values.
Résultat System
        public Range(int fromValue, int valueCount)
        {
            this.from = fromValue;
            this.count = valueCount;
        }
    }
Range