Neg_Utils/Achievments/AchievmentsUpdater.cs
2023-02-17 14:56:31 +01:00

15 lines
271 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace NEG.Utils.Achievments
{
public class AchievmentsUpdater : MonoBehaviour
{
void Update()
{
Achievment.Instance.UpdateBackend();
}
}
}