2020-06-22 23:18:41 +10:00
|
|
|
using System;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Shared.Weapons.Ranged
|
2020-06-22 23:18:41 +10:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is sent if the MagazineBarrel AutoEjects the magazine
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable, NetSerializable]
|
2021-10-27 18:10:40 +02:00
|
|
|
#pragma warning disable 618
|
2020-06-22 23:18:41 +10:00
|
|
|
public sealed class MagazineAutoEjectMessage : ComponentMessage {}
|
2021-10-27 18:10:40 +02:00
|
|
|
#pragma warning restore 618
|
2021-02-27 04:12:09 +01:00
|
|
|
}
|