This commit is contained in:
Tourswen
2025-11-03 02:39:00 +08:00
parent 8f85bd00f3
commit 242866bada
183 changed files with 5967 additions and 3078 deletions

View File

@@ -0,0 +1,19 @@
using System.Collections.Generic;
using Verse;
namespace WulaFallenEmpire
{
public class CompProperties_StorageTurret : CompProperties
{
public CompProperties_StorageTurret()
{
this.compClass = typeof(CompStorageTurret);
}
public ThingDef turretDef;
public float angleOffset;
public bool autoAttack = true;
public int maxTurrets = 5; // 最大炮塔数量
public float turretSpacing = 1f; // 炮塔间距
}
}