Files

14 lines
216 B
C#
Raw Permalink Normal View History

2025-10-03 00:02:43 -04:00
using UnityEngine;
namespace UMod.Examples
{
public class KeepAlive : MonoBehaviour
{
// Methods
public void Awake()
{
DontDestroyOnLoad(gameObject);
}
}
}