AwesomeRunner/Assets/Scripts/Player/GameSessionResetter.cs
VladimirPirozhenko 45b277e7d1 Initial commit
2022-08-07 07:31:16 +03:00

22 lines
537 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameSessionResetter : MonoBehaviour, IResettable
{
private List<IResettable> resettables = new List<IResettable>();
public void RegisterResettable(IResettable resettable)
{
resettables.Add(resettable);
}
public void UnregisterResettable(IResettable resettable)
{
resettables.Remove(resettable);
}
public void ResetToDefault()
{
throw new System.NotImplementedException();
}
}