This commit is contained in:
2026-02-24 12:02:38 +08:00
parent 1af5f0c1d8
commit 96bc1d4c5a
57 changed files with 6595 additions and 1170 deletions

View File

@@ -0,0 +1,16 @@
// CompProperties_MechInherentWeapon.cs
using RimWorld;
using Verse;
namespace WulaFallenEmpire
{
public class CompProperties_MechInherentWeapon : CompProperties
{
public ThingDef weaponDef; // 固有武器的定义
public CompProperties_MechInherentWeapon()
{
this.compClass = typeof(CompMechInherentWeapon);
}
}
}