14 lines
276 B
C#
14 lines
276 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Weapons.Ranged
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum BallisticMagazineWeaponVisuals
|
|
{
|
|
MagazineLoaded,
|
|
AmmoCapacity,
|
|
AmmoLeft,
|
|
}
|
|
}
|