mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
18 lines
436 B
C#
18 lines
436 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.Console;
|
|
|
|
namespace Content.Shared.Administration
|
|
{
|
|
/// <summary>
|
|
/// Specifies that a command can be executed by any player.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
|
|
[BaseTypeRequired(typeof(IConsoleCommand))]
|
|
[MeansImplicitUse]
|
|
public sealed class AnyCommandAttribute : Attribute
|
|
{
|
|
|
|
}
|
|
}
|