Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/Config/HimekoWeapoonAttach.cs
2025-08-13 09:26:42 +08:00

25 lines
594 B
C#

namespace MoleMole.Config
{
public class HimekoWeapoonAttach : ConfigWeaponAttach
{
public const string SWORD_PATH = "Sword";
public const string SWORD_ATTACH_POINT = "WeaponRightHand";
public override WeaponAttach.WeaponAttachHandler GetAttachHandler()
{
return WeaponAttach.HimekoAttachHandler;
}
public override WeaponAttach.RuntimeWeaponAttachHandler GetRuntimeWeaponAttachHandler()
{
return WeaponAttach.HimekoRuntimeAttachHandler;
}
public override WeaponAttach.WeaponDetachHandler GetDetachHandler()
{
return WeaponAttach.HimekoDetachHandler;
}
}
}