C# Class GameJoltAPI.ScoreTable

Class representing the scoretable 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
ScoreTable ( int id, string name = null, string description = null, bool primary = true ) : System

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

Method Details

ScoreTable() public method

Creates a new GameJoltAPI scoretable instance. Represents the callback information.
public ScoreTable ( int id, string name = null, string description = null, bool primary = true ) : System
id int The high score table identifier.
name string The developer-defined high score table name.
description string The developer-defined high score table description.
primary bool Whether or not this is the default high score table. High scores are submitted to the primary table by default.
return System