mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
24 lines
796 B
C#
24 lines
796 B
C#
namespace Dalamud.Utility;
|
|
|
|
/// <summary>
|
|
/// Utility class for marking something to be changed for when the new bindings are fully adopted, for ease of lookup.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.All, Inherited = false)]
|
|
internal sealed class ImGuiBindingsToDoAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// Marks that this should be made internal.
|
|
/// </summary>
|
|
public const string MakeInternal = "Make internal.";
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ImGuiBindingsToDoAttribute"/> class.
|
|
/// </summary>
|
|
/// <param name="what">The explanation.</param>
|
|
/// <param name="what2">The explanation 2.</param>
|
|
public ImGuiBindingsToDoAttribute(string what, string what2 = "")
|
|
{
|
|
_ = what;
|
|
_ = what2;
|
|
}
|
|
}
|