using UnityEngine; namespace Unity.Multiplayer.Samples.BossRoom { /// /// A ScriptableObject which contains a reference to a Transform component. This can be used to remove dependencies /// between scene objects. /// [CreateAssetMenu] public class TransformVariable : ScriptableObject { public Transform Value; } }