Add Tula to your game and test the connection
Generate a secure API key for your game:
Add this code to your project to initialize the Tula SDK
using Tula; public class TulaBootstrap : MonoBehaviour { void Start() { TulaSDK.Init("YOUR_API_KEY"); } public void OnLevelComplete() { TulaSDK.PresentUpsell(new TulaUpsellOptions { Trigger = "level_complete" }); } }