namespace Zinnia.Data.Attribute
{
using System;
using UnityEngine;
///
/// Defines the [TypePicker] attribute.
///
/// This attribute is only valid on fields that use .
public class TypePickerAttribute : PropertyAttribute
{
public readonly Type baseType;
public TypePickerAttribute(Type baseType)
{
this.baseType = baseType;
}
}
}