mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
18 lines
525 B
C#
18 lines
525 B
C#
using System;
|
|
|
|
namespace Robust.Shared.GameObjects;
|
|
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
|
|
public sealed class ByRefEventAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Indicates that an eventbus event should only ever be raised through <see cref="IDirectedEventBus.RaiseComponentEvent{TEvent}(IComponent, TEvent)"/>.
|
|
/// This allows extra optimizations.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
|
|
internal sealed class ComponentEventAttribute : Attribute
|
|
{
|
|
}
|