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

21 lines
602 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace NEG.Utils.Achivments
{
public interface IAchivmentManagerConfig
{
/// <summary>
/// Used to Apply config data
/// </summary>
/// <param name="builder"></param>
void Apply(AchivmentManager.Builder builder);
/// <summary>
/// Called after <see cref="Apply(AchivmentManager.Builder)"/> was called on every other config
/// </summary>
/// <param name="builder"></param>
void ApplyLast(AchivmentManager.Builder builder);
}
}