Bunch of stuff...

This commit is contained in:
MidoriKami 2025-11-30 10:39:35 -08:00
parent c51e65e0bd
commit 26f119096b
17 changed files with 74 additions and 116 deletions

View file

@ -0,0 +1,25 @@
namespace Dalamud.Utility;
/// <summary>
/// Utility class for marking something to be changed for API 13, for ease of lookup.
/// Intended to represent not the upcoming API, but the one after it for more major changes.
/// </summary>
[AttributeUsage(AttributeTargets.All, Inherited = false)]
internal sealed class Api15ToDoAttribute : 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="Api15ToDoAttribute"/> class.
/// </summary>
/// <param name="what">The explanation.</param>
/// <param name="what2">The explanation 2.</param>
public Api15ToDoAttribute(string what, string what2 = "")
{
_ = what;
_ = what2;
}
}