21 lines
602 B
C#
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);
|
|
}
|
|
} |