This commit is contained in:
2025-08-09 00:44:31 +08:00
parent fa442bd7fd
commit 8d4fa0f7b8
11 changed files with 36 additions and 282 deletions

View File

@@ -0,0 +1,17 @@
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));
}
}
}