using UnityEngine; namespace UnityEngine.Perception.Randomization { /// /// The base asset role class. Derive from instead to create a new asset role. /// interface IAssetRoleBase { /// /// The string label uniquely associated with this asset role /// string label { get; } /// /// A description for this asset role /// string description { get; } } }