forked from Shardstone/trail-into-darkness
8 lines
214 B
C#
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 {
|
|
}
|
|
}
|