Files
encounter-system/Runtime/IEncounterKind.cs
2026-04-21 00:01:34 +02:00

14 lines
409 B
C#

using System;
namespace Jovian.EncounterSystem {
/// <summary>Polymorphic payload on an <see cref="IEncounter"/>. Add a new kind by implementing
/// this interface; the SubclassSelector drawer surfaces it automatically.</summary>
public interface IEncounterKind {
}
[Serializable]
public partial class QuestKind : IEncounterKind {
public EncounterLink nextEncounter;
}
}