10 lines
318 B
C#
10 lines
318 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Jovian.EncounterSystem {
|
|
/// <summary>Renders a concrete-type picker dropdown for a <c>[SerializeReference]</c> field.</summary>
|
|
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
|
|
public class SubclassSelectorAttribute : PropertyAttribute {
|
|
}
|
|
}
|