the initial commit to the repo.
This commit is contained in:
parent
025c032b8c
commit
1b757591b9
264 changed files with 21882 additions and 0 deletions
15
stoopid.raw/stupid.solutions/Loader.cs
Normal file
15
stoopid.raw/stupid.solutions/Loader.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using UnityEngine;
|
||||
|
||||
namespace stupid.solutions;
|
||||
|
||||
public class Loader
|
||||
{
|
||||
public static GameObject HookObject;
|
||||
|
||||
public static void Load()
|
||||
{
|
||||
HookObject = new GameObject();
|
||||
HookObject.AddComponent<Main>();
|
||||
Object.DontDestroyOnLoad(HookObject);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue