Neg_Utils/Achievments/IAchivmentStorage.cs

11 lines
224 B
C#

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