Files
trail-into-darkness-demo/Packages/com.jovian.encounter-system/Runtime/IRewardKind.cs
2026-05-19 15:52:04 +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 {
}
}