mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 08:54:43 +01:00
25 lines
594 B
C#
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;
|
|
}
|
|
}
|
|
}
|