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)
|
|
|
|
|
{
|
2022-01-31 23:47:20 +03:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|