Files
WulaFallenEmpireRW/Source/WulaFallenEmpire/BuildingComp/WULA_PrefabSpawner/CompProperties_PrefabSpawner.cs
2025-11-26 17:39:04 +08:00

15 lines
320 B
C#

using Verse;
namespace WulaFallenEmpire
{
public class CompProperties_PrefabSpawner : CompProperties
{
public string prefabDefName;
public bool consumesMaterials = true;
public CompProperties_PrefabSpawner()
{
compClass = typeof(CompPrefabSpawner);
}
}
}