using System.Collections; using System.Collections.Generic; using UnityEngine; namespace NEG.Utils.Achievments { public interface IAchivmentManagerConfig { /// /// Used to Apply config data /// /// void Apply(AchievmentManager.Builder builder); /// /// Called after was called on every other config /// /// void ApplyLast(AchievmentManager.Builder builder); } }