6
StarHorizon_Public/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Cartridges.cs
2026-01-24 12:49:55 +03:00

14 lines
309 B
C#

using Content.Shared.Weapons.Ranged.Components;
using Robust.Shared.GameStates;
using Robust.Shared.Serialization;
namespace Content.Shared.Weapons.Ranged.Systems;
public abstract partial class SharedGunSystem
{
// needed for server system
protected virtual void InitializeCartridge()
{
}
}