Files
tbd-station-14/Content.Shared/GameObjects/Components/Weapons/Ranged/SharedBallisticMagazineWeaponComponent.cs
Pieter-Jan Briers 0882435293 Fancy guns. (#152)
2019-03-23 15:04:14 +01:00

14 lines
274 B
C#

using System;
using SS14.Shared.Serialization;
namespace Content.Shared.GameObjects.Components.Weapons.Ranged
{
[Serializable, NetSerializable]
public enum BallisticMagazineWeaponVisuals
{
MagazineLoaded,
AmmoCapacity,
AmmoLeft,
}
}