rabidus-test/Assets/ResultSceneManager.cs

12 lines
220 B
C#
Raw Normal View History

2023-10-10 17:25:59 +03:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ResultSceneManager : MonoBehaviour
{
private void Start()
{
LeaderboardController.Instance.SaveData();
}
}