Debug Commands work in progress

This commit is contained in:
Wojtek Figat
2024-10-03 10:24:15 +02:00
parent 791435ba76
commit a932d549f4
5 changed files with 334 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
// 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
{
}
}