Skip to main content
Version: SDK-5.11.2

Basic Information on How to Use BACKND

Declare namespace

To use BACKND SDK,
you must declare to use BackEnd namespace by using the Using keyword in every script that calls BACKND functions.

Example

using BackEnd;

Initialize BACKND SDK

All classes included in the BACKND SDK are initialized when initializing the BACKND SDK.
For more information on how to initialize the BACKND SDK, please refer to the SDK Initialization documentation.

Call BACKND functions

All functions of BACKND can be called via the Backend singleton object.
For more information on how to call each function, please refer to each relevant documentation.

Namespace is BackEnd, and BACKND object is Backend. Please note that they are case-sensitive.

Example

using BackEnd;

void MyFunction()
{
var bro = Backend.BMember.GetUserInfo();
Debug.Log(bro);
}