Added encounter registry

This commit is contained in:
Sebastian Bularca
2026-04-27 00:06:58 +02:00
parent f71e6a145e
commit d14c5cdc2d
5 changed files with 69 additions and 60 deletions

View File

@@ -3,11 +3,10 @@ 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 {
}
public interface IEncounterKind { }
[Serializable]
public partial class QuestKind : IEncounterKind {
public class QuestKind : IEncounterKind {
public EncounterLink nextEncounter;
}
}