Gamebase SDK for Unity  1.14.2
Toast Gamebase Platform

◆ ShowAlert() [1/2]

static void ShowAlert ( string  title,
string  message 
)
static

This method to create the dialog and display it on screen.

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

Example Usage :

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