2021-12-03 15:35:57 +01:00
|
|
|
using Robust.Shared.Serialization;
|
2022-12-19 08:28:46 +13:00
|
|
|
using static Content.Shared.Decals.DecalGridComponent;
|
2021-12-03 15:35:57 +01:00
|
|
|
|
|
|
|
|
namespace Content.Shared.Decals
|
|
|
|
|
{
|
|
|
|
|
[Serializable, NetSerializable]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class DecalChunkUpdateEvent : EntityEventArgs
|
2021-12-03 15:35:57 +01:00
|
|
|
{
|
2023-09-11 09:42:41 +10:00
|
|
|
public Dictionary<NetEntity, Dictionary<Vector2i, DecalChunk>> Data = new();
|
|
|
|
|
public Dictionary<NetEntity, HashSet<Vector2i>> RemovedChunks = new();
|
2021-12-03 15:35:57 +01:00
|
|
|
}
|
|
|
|
|
}
|