Initial upload

This commit is contained in:
Matthew 2022-11-01 12:15:06 -04:00
parent feb28b10a4
commit 7585da099c
106 changed files with 4860 additions and 0 deletions

View file

@ -0,0 +1,21 @@
using RimWorld;
using Verse;
namespace rjwquirks.Modules.Shared.Events
{
/// <summary>
/// Copy of the HistoryEvent.
/// Made it it's own thing because it use cases are different
/// </summary>
public struct RjwEvent
{
public RjwEventDef def;
public SignalArgs args;
public RjwEvent(RjwEventDef def, params NamedArgument[] args)
{
this.def = def;
this.args = new SignalArgs(args);
}
}
}