Files
crystall-punk-14/Content.Shared/GameObjects/Components/Weapons/Ranged/SharedBallisticMagazineComponent.cs

13 lines
246 B
C#
Raw Normal View History

2019-03-23 15:04:14 +01:00
using System;
using Robust.Shared.Serialization;
2019-03-23 15:04:14 +01:00
namespace Content.Shared.GameObjects.Components.Weapons.Ranged
{
[Serializable, NetSerializable]
public enum BallisticMagazineVisuals
{
AmmoCapacity,
AmmoLeft,
}
}