AnyCommandAttribute.cs 404 B

12345678910111213141516
  1. using JetBrains.Annotations;
  2. using Robust.Shared.Console;
  3. using Robust.Shared.Toolshed;
  4. namespace Content.Shared.Administration
  5. {
  6. /// <summary>
  7. /// Specifies that a command can be executed by any player.
  8. /// </summary>
  9. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
  10. [MeansImplicitUse]
  11. public sealed class AnyCommandAttribute : Attribute
  12. {
  13. }
  14. }