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

17 lines
375 B
C#

using System;
namespace MoleMole.Config
{
public abstract class ConfigWeaponAttach
{
[NonSerialized]
public string PrefabPath;
public abstract WeaponAttach.WeaponAttachHandler GetAttachHandler();
public abstract WeaponAttach.RuntimeWeaponAttachHandler GetRuntimeWeaponAttachHandler();
public abstract WeaponAttach.WeaponDetachHandler GetDetachHandler();
}
}