Files
HauntedBloodlines/Assets/Scripts/SaveLoad/DontDestroyOnLoad.cs
2025-05-29 22:31:40 +03:00

12 lines
212 B
C#

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