12 lines
322 B
C#
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!;
|
|
}
|