Class Steamworks
Steamworks functions.
Inheritance
System.Object
Steamworks
Namespace: Mannequin.Bindings
Assembly: Collapse.dll
Syntax
public static class Steamworks : object
Properties
IsReady
Whether the Steamworks functions are ready.
Declaration
public static bool IsReady { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
GetPersona()
Get the user's persona information.
Declaration
public static SteamworksPersona GetPersona()
Returns
Type | Description |
---|---|
SteamworksPersona | The user's persona information See SteamworksPersona |
SignedRequest(String, Dictionary<String, String>, Closure)
Make a signed request using auth tickets. This is used as an authentication mechanism.
This is currently only used internally, but if you think you have a good reason to use this API, please let me know at alex at anarkisgaming dot com.
Declaration
public static bool SignedRequest(string key, Dictionary<string, string> param, Closure callback)
Parameters
Type | Name | Description |
---|---|---|
System.String | key | API key associated with this request |
Dictionary<System.String, System.String> | param | POST parameters |
Closure | callback | Called with the data once it is received. If this is |
Returns
Type | Description |
---|---|
System.Boolean | A boolean representing whether the request was queued or not. If this is |