Neg_Utils/Achievments/Achievments.cs
2023-01-19 15:57:13 +01:00

22 lines
435 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace NEG.Utils.Achievments
{
public static class Achievments
{
public static AchievmentManager Instance
{
get
{
if (instance == null)
{
instance =
}
}
}
private static AchievmentManager instance;
}
}