Import Triumph
Import Triumph into your project
Import
using UnityEngine;
using UnityEngine.SceneManagement;
namespace TriumphSDK
{
public class TriumphUnityNativeMethods : MonoBehaviour, ITriumphUnityNativeMethods
{
// place your game ID here
public static readonly string gameId = "";
// place your merchant ID here
public static readonly string merchantId = "";
public void TriumphStartedGame()
{
/* TODO: implement method */
}
public void TriumphDidDismiss()
{
/* TODO: implement method */
}
public void TriumphDidPresent()
{
/* TODO: implement method */
}
public void TriumphWillDismiss()
{
/* TODO: implement method */
}
public void TriumphWillPresent()
{
/* TODO: implement method */
}
}
}
Last updated

