C# Class UnityEngine.SocialPlatforms.Range

Show file Open project: CarlosHBC/UnityDecompiled Class Usage Examples

Public Properties

Property Type Description
count int
from int

Public Methods

Method Description
Range ( int fromValue, int valueCount ) : System

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

Method Details

Range() public method

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.
return System

Property Details

count public property

The total amount of scores retreived.

public int count
return int

from public property

The rank of the first score which is returned.

public int from
return int