mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 08:54:43 +01:00
25 lines
578 B
C#
25 lines
578 B
C#
namespace MoleMole.Config
|
|
{
|
|
public class FukaWeapoonAttach : ConfigWeaponAttach
|
|
{
|
|
public const string TAIL_PATH = "Tail";
|
|
|
|
public const string TAIL_ATTACH_POINT = "WeaponTail";
|
|
|
|
public override WeaponAttach.WeaponAttachHandler GetAttachHandler()
|
|
{
|
|
return WeaponAttach.FukaAttachHandler;
|
|
}
|
|
|
|
public override WeaponAttach.RuntimeWeaponAttachHandler GetRuntimeWeaponAttachHandler()
|
|
{
|
|
return WeaponAttach.FukaRuntimeAttachHandler;
|
|
}
|
|
|
|
public override WeaponAttach.WeaponDetachHandler GetDetachHandler()
|
|
{
|
|
return WeaponAttach.FukaDetachHandler;
|
|
}
|
|
}
|
|
}
|