18 lines
418 B
C#
Raw Permalink Normal View History

2022-01-05 06:04:27 +03:00
using UnityEngine;
namespace SamSWAT.TimeWeatherChanger
{
public class Program
{
public static GameObject Hook;
public static void Main(string[] args)
{
Debug.LogError("SamSWAT - Time and Weather Changer loaded");
2022-01-05 06:04:27 +03:00
Hook = new GameObject();
Hook.AddComponent<TimeWeatherController>();
Object.DontDestroyOnLoad(Hook);
}
}
}