Files
encounter-system/Runtime/SubclassSelectorAttribute.cs
2026-04-19 12:46:26 +02:00

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 {
}
}