DecalChunkUpdateEvent.cs 403 B

123456789101112
  1. using Robust.Shared.Serialization;
  2. using static Content.Shared.Decals.DecalGridComponent;
  3. namespace Content.Shared.Decals
  4. {
  5. [Serializable, NetSerializable]
  6. public sealed class DecalChunkUpdateEvent : EntityEventArgs
  7. {
  8. public Dictionary<NetEntity, Dictionary<Vector2i, DecalChunk>> Data = new();
  9. public Dictionary<NetEntity, HashSet<Vector2i>> RemovedChunks = new();
  10. }
  11. }