C# Class GameJoltAPI.Score

Class representing the Score API callback information.

See: http://gamejolt.com/api/doc/game/scores/fetch/ for further information.

@author Christian "HyperGod" Bosence

@version 0.1.0.0

Show file Open project: Bosence/GameJolt-C--API

Public Methods

Method Description
GetHashCode ( ) : int

Unique instance identifier.

Score ( int sort, string score = null, string extra_data = null, string user = null, int user_id = null, string guest = null, string stored = null ) : System

Creates a new GameJoltAPI score instance. Represents the callback information.

Method Details

GetHashCode() public method

Unique instance identifier.
public GetHashCode ( ) : int
return int

Score() public method

Creates a new GameJoltAPI score instance. Represents the callback information.
public Score ( int sort, string score = null, string extra_data = null, string user = null, int user_id = null, string guest = null, string stored = null ) : System
sort int The score's numerical sort value.
score string The score string.
extra_data string Any extra data associated with the score.
user string If this is a user score, this is the display name for the user.
user_id int If this is a user score, this is the user's ID.
guest string If this is a guest score, this is the guest's submitted name.
stored string Returns when the score was logged by the user.
return System