Ropasci-Forest/Assets/Scripts/DontDestroy.cs
Gerard Gascón fca6784fe7 init
2025-04-24 17:02:43 +02:00

13 lines
206 B
C#

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