Files
tbd-station-14/Content.Shared/Decals/DecalChunkUpdateEvent.cs
2023-09-11 09:42:41 +10:00

13 lines
403 B
C#

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