Files
tbd-station-14/Content.Shared/Sprite/SharedRandomSpriteSystem.cs
2022-08-08 10:18:14 +10: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!;
}