mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 06:28:40 +03:00
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 {}
|
|
} |