removed a ton of xml comments and such

This commit is contained in:
Sebastian Bularca
2026-04-19 12:46:26 +02:00
parent 8ce041e2d8
commit d05641c979
25 changed files with 221 additions and 367 deletions

View File

@@ -1,11 +1,6 @@
namespace Jovian.EncounterSystem {
/// <summary>
/// Per-resolution state passed into every event handler invoked by <see cref="EncounterResolver.Resolve"/>.
/// Holds "who/what is currently being resolved" — not long-lived services. Extend with additional
/// fields (party, selected option, acting character, …) as handlers need them.
/// </summary>
/// <summary>Per-resolution scratch object passed to every event handler. Extend with fields as handlers need them.</summary>
public class EncounterContext {
/// <summary>The encounter whose dialog option fired this resolution.</summary>
public IEncounter CurrentEncounter { get; }
public EncounterContext(IEncounter currentEncounter) {