2022-05-13 00:59:03 -07:00
|
|
|
|
using JetBrains.Annotations;
|
2021-02-01 16:49:43 -08:00
|
|
|
|
using Robust.Shared.Console;
|
2023-08-02 16:09:08 -05:00
|
|
|
|
using Robust.Shared.Toolshed;
|
2020-10-30 16:06:48 +01:00
|
|
|
|
|
2021-12-13 16:45:49 +11:00
|
|
|
|
namespace Content.Shared.Administration
|
2020-10-30 16:06:48 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Specifies that a command can be executed by any player.
|
|
|
|
|
|
/// </summary>
|
2022-01-12 11:05:39 +01:00
|
|
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
|
2020-10-30 16:06:48 +01:00
|
|
|
|
[MeansImplicitUse]
|
|
|
|
|
|
public sealed class AnyCommandAttribute : Attribute
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|