mirror of
https://gitgud.io/c0ffeeeeeeee/rjw-events.git
synced 2024-08-14 23:57:42 +00:00
first commit
This commit is contained in:
parent
1c82248286
commit
6d1a218b2e
23 changed files with 836 additions and 0 deletions
20
Source/DefOfs/TaleDefOf.cs
Normal file
20
Source/DefOfs/TaleDefOf.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
using RimWorld;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace RJW_Events
|
||||
{
|
||||
[DefOf]
|
||||
public static class TaleDefOf
|
||||
{
|
||||
static TaleDefOf()
|
||||
{
|
||||
DefOfHelper.EnsureInitializedInCtor(typeof(TaleDefOf));
|
||||
}
|
||||
|
||||
public static TaleDef AttendedOrgy;
|
||||
}
|
||||
}
|
20
Source/DefOfs/ThoughtDefOf.cs
Normal file
20
Source/DefOfs/ThoughtDefOf.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
using RimWorld;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace RJW_Events
|
||||
{
|
||||
[DefOf]
|
||||
public static class ThoughtDefOf
|
||||
{
|
||||
static ThoughtDefOf()
|
||||
{
|
||||
DefOfHelper.EnsureInitializedInCtor(typeof(ThoughtDefOf));
|
||||
}
|
||||
|
||||
public static ThoughtDef AttendedOrgy;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue