14 lines
309 B
C#
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()
|
|
{
|
|
}
|
|
}
|