using System;
namespace Robust.Shared.Analyzers;
///
/// Marker attribute specifying that content must not implement this interface itself.
///
///
///
/// Interfaces with this attribute may have members added by the engine at any time,
/// so implementing them yourself would not be API-stable.
///
///
/// Currently, nothing enforces this, but your codebase may spontaneously cease building in any minor version if
/// you inherit from or implement anything marked with this attribute.
///
///
[AttributeUsage(AttributeTargets.Interface)]
public sealed class NotContentImplementableAttribute : Attribute;