This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Last-Ember/Scripts/Scenes/MainMenu/Startups/ConfigHandler.cs
T
2019-03-08 09:54:14 +11:00

11 lines
223 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Startups {
public class ConfigHandler : MonoBehaviour {
void OnDestroy() {
ConfigurationManager.Instance.CleanUp();
}
}
}