// Copyright (c) Wojciech Figat. All rights reserved. using System; namespace FlaxEngine { /// /// Marks static method as debug command that can be executed from the command line or via console. /// [Serializable] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Field | AttributeTargets.Property)] public sealed class DebugCommand : Attribute { } }