Files
Leon FriedrichandGitHub eba58cb893 Remove RobustTree & PVSCollection (#4759)
* Cut down RobustTree

* Better LoD

* Add PvsPriority flag

* Undo cvar name change

* reorganize grafana metrics

* Fix tests

* Fix replays

* Don't try process empty chunks

* Fix move benchmark

* Fix benchmark

* Remove obsolete audio methods

* Moar benchmarks

* Rename EntityData

* A

* B
2023-12-28 09:10:13 +11:00

12 lines
318 B
C#

namespace Robust.Shared.GameObjects
{
/// <summary>
/// The children of this entity are about to be deleted.
/// </summary>
[ByRefEvent]
public readonly struct EntityTerminatingEvent(Entity<MetaDataComponent> entity)
{
public readonly Entity<MetaDataComponent> Entity = entity;
}
}