mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
chore: Add api 13 tracker
This commit is contained in:
parent
1676522ea8
commit
3074115b34
1 changed files with 24 additions and 0 deletions
24
Dalamud/Utility/Api13ToDoAttribute.cs
Normal file
24
Dalamud/Utility/Api13ToDoAttribute.cs
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
namespace Dalamud.Utility;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Utility class for marking something to be changed for API 13, for ease of lookup.
|
||||||
|
/// </summary>
|
||||||
|
[AttributeUsage(AttributeTargets.All, Inherited = false)]
|
||||||
|
internal sealed class Api13ToDoAttribute : 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="Api13ToDoAttribute"/> class.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="what">The explanation.</param>
|
||||||
|
/// <param name="what2">The explanation 2.</param>
|
||||||
|
public Api13ToDoAttribute(string what, string what2 = "")
|
||||||
|
{
|
||||||
|
_ = what;
|
||||||
|
_ = what2;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue