Files
RobustToolbox/Robust.Shared/GameObjects/ByRefEventAttribute.cs

9 lines
176 B
C#

using System;
namespace Robust.Shared.GameObjects;
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
public sealed class ByRefEventAttribute : Attribute
{
}