This commit is contained in:
Tourswen
2025-11-06 02:14:36 +08:00
parent f01c35e95e
commit 762c5db4cf
29 changed files with 702 additions and 467 deletions

View File

@@ -15,11 +15,11 @@ namespace WulaFallenEmpire
DefOfHelper.EnsureInitializedInCtor(typeof(ThingDefOf_WULA));
}
}
[DefOf]
public static class JobDefOf_WULA
{
public static JobDef WULA_EnterMaintenancePod;
public static JobDef WULA_HaulToMaintenancePod;
static JobDefOf_WULA()
@@ -27,6 +27,7 @@ namespace WulaFallenEmpire
DefOfHelper.EnsureInitializedInCtor(typeof(JobDefOf_WULA));
}
}
[DefOf]
public static class WulaStatDefOf
{
@@ -38,4 +39,27 @@ namespace WulaFallenEmpire
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));
}
}
}