This commit is contained in:
2025-11-26 17:39:04 +08:00
parent 6f7e372d23
commit 86f83ae375
13 changed files with 500 additions and 71 deletions

View File

@@ -0,0 +1,15 @@
using Verse;
namespace WulaFallenEmpire
{
public class CompProperties_PrefabSpawner : CompProperties
{
public string prefabDefName;
public bool consumesMaterials = true;
public CompProperties_PrefabSpawner()
{
compClass = typeof(CompPrefabSpawner);
}
}
}