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

8 lines
214 B
C#

using System;
namespace Jovian.EncounterSystem {
/// <summary>Polymorphic payload on a <see cref="Reward"/>. Add a new kind by implementing this interface.</summary>
public interface IRewardKind {
}
}