Files
trail-into-darkness/Packages/com.jovian.encounter-system/Runtime/IEncounterKind.cs
2026-04-27 00:01:15 +02:00

13 lines
397 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 class QuestKind : IEncounterKind {
public EncounterLink nextEncounter;
}
}