Files
SimUL/Assets/Scripts/DontDestroy.cs
T
2023-03-06 18:54:13 +02:00

10 lines
141 B
C#

using UnityEngine;
public class DontDestroy : MonoBehaviour
{
private void Awake()
{
DontDestroyOnLoad(gameObject);
}
}