mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* IEventBus -> EventBus * Fix CompIdx.RefArray * IEntityManager -> EntityManager * Remove double delegate * Add GetNetCompEventHandlers() * release notes & cleanup * Make PVS use GetNetCompEventHandlers * I love event bus tests * also fix pvs pause test * dont trimm --------- Co-authored-by: PJB3005 <pieterjan.briers+git@gmail.com> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
11 lines
254 B
C#
11 lines
254 B
C#
namespace Robust.Shared.GameObjects
|
|
{
|
|
/// <summary>
|
|
/// Raised directed on an entity when the map is initialized.
|
|
/// </summary>
|
|
[ComponentEvent(Exclusive = false)]
|
|
public sealed class MapInitEvent : EntityEventArgs
|
|
{
|
|
}
|
|
}
|