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