17 lines
382 B
C#
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);
|
|
}
|
|
}
|
|
}
|