forked from Terkoiz/Freecam
18 lines
407 B
C#
18 lines
407 B
C#
using UnityEngine;
|
|
|
|
namespace Terkoiz.Freecam
|
|
{
|
|
public class Program
|
|
{
|
|
private static GameObject HookObject;
|
|
|
|
static void Main(string[] args)
|
|
{
|
|
Debug.LogError("Terkoiz.Freecam: Loading...");
|
|
HookObject = new GameObject();
|
|
HookObject.AddComponent<FreecamController>();
|
|
Object.DontDestroyOnLoad(HookObject);
|
|
}
|
|
}
|
|
}
|