| 1234567891011 |
- 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!;
- }
|