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

파일 보기 프로젝트 열기: Bosence/GameJolt-C--API

공개 메소드들

메소드 설명
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