Files
WulaFallenEmpireRW/Source/WulaFallenEmpire/WULA_Energy/WulaStatDefOf.cs
2025-08-21 15:39:46 +08:00

18 lines
359 B
C#

using RimWorld;
using Verse;
namespace WulaFallenEmpire
{
[DefOf]
public static class WulaStatDefOf
{
public static StatDef WulaEnergyMaxLevelOffset;
public static StatDef WulaEnergyFallRateFactor;
static WulaStatDefOf()
{
DefOfHelper.EnsureInitializedInCtor(typeof(WulaStatDefOf));
}
}
}