整理一下

This commit is contained in:
2025-08-29 16:10:25 +08:00
parent d759562b83
commit dce9a31cd6
51 changed files with 52 additions and 52 deletions

View File

@@ -0,0 +1,19 @@
using Verse;
namespace WulaFallenEmpire
{
public class CompMechWeapon : ThingComp
{
// You can add custom logic or fields here if needed for this component.
// For now, it primarily serves as a marker for mechanical units that can use MechWeapon features.
}
public class CompProperties_MechWeapon : CompProperties
{
public CompProperties_MechWeapon()
{
compClass = typeof(CompMechWeapon);
}
}
}