This commit is contained in:
2025-09-17 14:01:07 +08:00
parent 684a46df6c
commit ee9ada0edb
11 changed files with 443 additions and 101 deletions

View File

@@ -0,0 +1,12 @@
using RimWorld;
namespace ArachnaeSwarm
{
public class CompProperties_NutrientProvider : CompProperties_Facility
{
public CompProperties_NutrientProvider()
{
compClass = typeof(CompNutrientProvider);
}
}
}