15 lines
271 B
C#
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();
|
|
}
|
|
}
|
|
} |