Files
WulaFallenEmpireRW/Source/WulaFallenEmpire/Pawn_Comps/MechInherentWeapon/CompProperties_MechInherentWeapon.cs
2026-02-24 12:02:38 +08:00

17 lines
382 B
C#

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