Files
FlaxEngine/Source/Engine/Debug/DebugCommands.cs
2024-10-03 10:24:15 +02:00

16 lines
397 B
C#

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