16 lines
344 B
C#

using UnityEngine;
namespace SamSWAT.TimeWeatherChanger
{
public class Program
{
public static GameObject Hook;
public static void Main(string[] args)
{
Hook = new GameObject();
Hook.AddComponent<TimeWeatherController>();
Object.DontDestroyOnLoad(Hook);
}
}
}