6
StarHorizon_Public/Content.Shared/Sprite/SharedRandomSpriteSystem.cs
2025-08-05 10:00:54 +03:00

12 lines
322 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Sprite;
public abstract class SharedRandomSpriteSystem : EntitySystem {}
[Serializable, NetSerializable]
public sealed class RandomSpriteColorComponentState : ComponentState
{
public Dictionary<string, (string State, Color? Color)> Selected = default!;
}