SmoothEdgeComponent.cs 301 B

123456789101112
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.IconSmoothing;
  3. /// <summary>
  4. /// Applies an edge sprite to <see cref="IconSmoothComponent"/> for non-smoothed directions.
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent]
  7. public sealed partial class SmoothEdgeComponent : Component
  8. {
  9. }