Files
test/Assets/PerfectWorld/Scripts/Common/ConsistentObjectContainer.cs

13 lines
217 B
C#

using UnityEngine;
namespace BrewMonster.Scripts
{
public class ConsistentObjectContainer : MonoBehaviour
{
private void Awake()
{
DontDestroyOnLoad(gameObject);
}
}
}