66 lines
1.5 KiB
C#
66 lines
1.5 KiB
C#
using RimWorld;
|
|
using Verse;
|
|
|
|
namespace WulaFallenEmpire
|
|
{
|
|
[DefOf]
|
|
public static class ThingDefOf_WULA
|
|
{
|
|
public static ThingDef WULA_MaintenancePod;
|
|
public static ThingDef WULA_Charging_Station_Synth;
|
|
public static ThingDef WULA_PocketMapExit;
|
|
|
|
static ThingDefOf_WULA()
|
|
{
|
|
DefOfHelper.EnsureInitializedInCtor(typeof(ThingDefOf_WULA));
|
|
}
|
|
}
|
|
|
|
[DefOf]
|
|
public static class JobDefOf_WULA
|
|
{
|
|
public static JobDef WULA_EnterMaintenancePod;
|
|
public static JobDef WULA_HaulToMaintenancePod;
|
|
|
|
static JobDefOf_WULA()
|
|
{
|
|
DefOfHelper.EnsureInitializedInCtor(typeof(JobDefOf_WULA));
|
|
}
|
|
}
|
|
|
|
[DefOf]
|
|
public static class WulaStatDefOf
|
|
{
|
|
public static StatDef WulaEnergyMaxLevelOffset;
|
|
public static StatDef WulaEnergyFallRateFactor;
|
|
|
|
static WulaStatDefOf()
|
|
{
|
|
DefOfHelper.EnsureInitializedInCtor(typeof(WulaStatDefOf));
|
|
}
|
|
}
|
|
|
|
[DefOf]
|
|
public static class WulaNeedDefOf
|
|
{
|
|
public static NeedDef WULA_Energy;
|
|
|
|
static WulaNeedDefOf()
|
|
{
|
|
DefOfHelper.EnsureInitializedInCtor(typeof(WulaNeedDefOf));
|
|
}
|
|
}
|
|
|
|
|
|
[DefOf]
|
|
public static class WulaStatCategoryDefOf
|
|
{
|
|
public static StatCategoryDef WULA_Synth;
|
|
|
|
static WulaStatCategoryDefOf()
|
|
{
|
|
DefOfHelper.EnsureInitializedInCtor(typeof(WulaStatCategoryDefOf));
|
|
}
|
|
}
|
|
}
|