18 lines
418 B
C#
18 lines
418 B
C#
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");
|
|
|
|
Hook = new GameObject();
|
|
Hook.AddComponent<TimeWeatherController>();
|
|
Object.DontDestroyOnLoad(Hook);
|
|
}
|
|
}
|
|
}
|