11 lines
384 B
C#
11 lines
384 B
C#
namespace Jovian.EncounterSystem {
|
|
/// <summary>Per-resolution scratch object passed to every event handler. Extend with fields as handlers need them.</summary>
|
|
public class EncounterContext {
|
|
public IEncounter CurrentEncounter { get; }
|
|
|
|
public EncounterContext(IEncounter currentEncounter) {
|
|
CurrentEncounter = currentEncounter;
|
|
}
|
|
}
|
|
}
|