C# Класс 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

Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

GetHashCode() публичный Метод

Unique instance identifier.
public GetHashCode ( ) : int
Результат int

Score() публичный Метод

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.
Результат System