using Robust.Shared.Map; using Robust.Shared.Serialization; namespace Content.Shared.Decals { [Serializable, NetSerializable] public sealed class DecalChunkUpdateEvent : EntityEventArgs { public Dictionary>> Data = new(); public Dictionary> RemovedChunks = new(); } }