11 lines
223 B
C#
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();
|
|
}
|
|
}
|
|
} |