Gamebase SDK for Unity  1.1.5
Toast Gamebase Platform

◆ ShowAlert() [1/2]

static void ShowAlert ( string  title,
string  message 
)
static

Show Alert View.

Parameters
titleThe title to be shown in the alert.
messageThe message to be shown in the alert.

This sample shows how to call the Gamebase.Util.ShowAlert method.

public void ShowAlert(string title, string message)
{
Gamebase.Util.ShowAlert(
title,
message);
}