Neg_Utils/Achivments/IAchivmentStorage.cs
2022-12-21 15:13:55 +01:00

11 lines
223 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace NEG.Utils.Achivments
{
public interface IAchivmentStorage
{
public int GetStoredAchivmentProgress(string id);
}
}