11 lines
223 B
C#
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);
|
|
}
|
|
} |