// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using UnityEngine; namespace Microsoft.MixedReality.Toolkit { /// /// Base abstract class for all Mixed Reality profile configurations. /// Extends ScriptableObject and used as a property container to initialize MRTK services. /// [Serializable] public abstract class BaseMixedRealityProfile : ScriptableObject { [SerializeField] [HideInInspector] private bool isCustomProfile = true; internal bool IsCustomProfile => isCustomProfile; } }