17 lines
367 B
C#
17 lines
367 B
C#
using RimWorld;
|
|
using Verse;
|
|
|
|
namespace WulaFallenEmpire
|
|
{
|
|
[DefOf]
|
|
public static class JobDefOf_WULA
|
|
{
|
|
public static JobDef WULA_LoadComponentsToMaintenancePod;
|
|
public static JobDef WULA_EnterMaintenancePod;
|
|
|
|
static JobDefOf_WULA()
|
|
{
|
|
DefOfHelper.EnsureInitializedInCtor(typeof(JobDefOf_WULA));
|
|
}
|
|
}
|
|
} |