using System;
namespace UnityEngine.Perception.Randomization
{
///
/// Used to annotate an AssetSourceLocation with notes within the inspector UI
///
public class AssetSourceLocationNotes : Attribute
{
///
/// The text notes to display in the AssetSourceLocation's UI.
///
public string notes;
///
/// Constructs a new AssetSourceLocationNotes attribute
///
/// The text notes to display in the inspector
public AssetSourceLocationNotes(string notes)
{
this.notes = notes;
}
}
}