Files
tbd-station-14/Content.Shared/Weapons/Ranged/MagazineAutoEjectMessage.cs
2021-06-09 22:19:39 +02:00

14 lines
355 B
C#

#nullable enable
using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
namespace Content.Shared.Weapons.Ranged
{
/// <summary>
/// This is sent if the MagazineBarrel AutoEjects the magazine
/// </summary>
[Serializable, NetSerializable]
public sealed class MagazineAutoEjectMessage : ComponentMessage {}
}