mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
72 lines
2.0 KiB
C#
72 lines
2.0 KiB
C#
namespace Robust.Shared.GameObjects
|
|
{
|
|
|
|
/// <summary>
|
|
/// Arguments for an event related to a component.
|
|
/// </summary>
|
|
public readonly struct ComponentEventArgs
|
|
{
|
|
/// <summary>
|
|
/// Component that this event relates to.
|
|
/// </summary>
|
|
public IComponent Component { get; }
|
|
|
|
/// <summary>
|
|
/// EntityUid of the entity this component belongs to.
|
|
/// </summary>
|
|
public EntityUid Owner { get; }
|
|
|
|
/// <summary>
|
|
/// Constructs a new instance of <see cref="ComponentEventArgs"/>.
|
|
/// </summary>
|
|
/// <param name="component">The relevant component</param>
|
|
/// <param name="owner">EntityUid of the entity this component belongs to.</param>
|
|
public ComponentEventArgs(IComponent component, EntityUid owner)
|
|
{
|
|
Component = component;
|
|
Owner = owner;
|
|
}
|
|
}
|
|
|
|
public readonly struct AddedComponentEventArgs
|
|
{
|
|
public readonly ComponentEventArgs BaseArgs;
|
|
public readonly ComponentRegistration ComponentType;
|
|
|
|
public AddedComponentEventArgs(ComponentEventArgs baseArgs, ComponentRegistration componentType)
|
|
{
|
|
BaseArgs = baseArgs;
|
|
ComponentType = componentType;
|
|
}
|
|
}
|
|
|
|
public readonly struct RemovedComponentEventArgs
|
|
{
|
|
public readonly ComponentEventArgs BaseArgs;
|
|
|
|
public readonly bool Terminating;
|
|
|
|
public readonly MetaDataComponent Meta;
|
|
|
|
public RemovedComponentEventArgs(ComponentEventArgs baseArgs, bool terminating, MetaDataComponent meta)
|
|
{
|
|
BaseArgs = baseArgs;
|
|
Terminating = terminating;
|
|
Meta = meta;
|
|
}
|
|
}
|
|
|
|
public readonly struct DeletedComponentEventArgs
|
|
{
|
|
public readonly ComponentEventArgs BaseArgs;
|
|
|
|
public readonly bool Terminating;
|
|
|
|
public DeletedComponentEventArgs(ComponentEventArgs baseArgs, bool terminating)
|
|
{
|
|
BaseArgs = baseArgs;
|
|
Terminating = terminating;
|
|
}
|
|
}
|
|
}
|