fish-station/Content.Client/_Starlight/Weapon/WeaponDismantleOnShootSystem.cs
Vigers Ray b52f640b5a
Порт стрельбы со старлайна (#2640)
Co-authored-by: KaiserMaus <kaiser.ratte@gmail.com>
2025-08-08 22:25:02 +03:00

24 lines
721 B
C#

using Content.Shared.Starlight.Weapon.Systems;
using System.Numerics;
using Content.Shared._Starlight.Weapon.Components;
using Content.Shared.Inventory;
using Content.Shared.Popups;
using Content.Shared.Tag;
using Content.Shared.Throwing;
using Content.Shared.Weapons.Ranged.Systems;
using Robust.Shared.Physics.Systems;
//linq
using System.Linq;
using Content.Shared.Weapons.Ranged.Events;
using Robust.Shared.Random;
using Content.Shared.Damage;
using Content.Shared.Wieldable;
using Robust.Shared.Audio.Systems;
using Robust.Shared.Player;
using Robust.Shared.Audio;
namespace Content.Client.Starlight.Weapon.Systems;
public sealed partial class WeaponDismantleOnShootSystem : SharedWeaponDismantleOnShootSystem
{
}