Represents an object the can be used to retrieve Buddy Game Boards and Scores.

Examples

CopyC#
BuddyClient client = new BuddyClient("APPNAME", "APPPASS");
client.LoginAsync((user, state) => {

    user.GameBoards.AddAsync(null, 100, "My Board", "Master", appTag: "MyTag");

    client.GameBoards.GetHighScores((r, state2) => {
        var scores = r;
    }, "My Board");
}, "username", "password");

Namespace: Buddy
Assembly: Buddy (in Buddy.dll) Version: 1.0.2.7 (1.0.2.7)

Syntax

C#
public class GameBoards
Visual Basic
Public Class GameBoards
Visual C++
public ref class GameBoards
JavaScript
Buddy.GameBoards = function();

Type.createClass(
	'Buddy.GameBoards');

Inheritance Hierarchy

System..::..Object
  Buddy..::..GameBoards

See Also