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