multi-handed item component (#12523)
* multi-handed item component * pretty fucking obvious missed portion of this * holy shit was i on crack wtf was that code * DEWIT RIGHT
This commit is contained in:
15
Content.Client/Items/Systems/MultiHandedItemSystem.cs
Normal file
15
Content.Client/Items/Systems/MultiHandedItemSystem.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Content.Shared.Hands;
|
||||
using Content.Shared.Item;
|
||||
|
||||
namespace Content.Client.Items.Systems;
|
||||
|
||||
public sealed class MultiHandedItemSystem : SharedMultiHandedItemSystem
|
||||
{
|
||||
protected override void OnEquipped(EntityUid uid, MultiHandedItemComponent component, GotEquippedHandEvent args)
|
||||
{
|
||||
}
|
||||
|
||||
protected override void OnUnequipped(EntityUid uid, MultiHandedItemComponent component, GotUnequippedHandEvent args)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user