Rename namespace PlayerState to Player

This commit is contained in:
Haselnussbomber 2025-11-17 19:29:48 +01:00
parent 2cf869872d
commit 64d4f7061a
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1
16 changed files with 34 additions and 22 deletions

View file

@ -0,0 +1,27 @@
namespace Dalamud.Game.Player;
/// <summary>
/// Specifies the mentor certification version for a player.
/// </summary>
public enum MentorVersion : byte
{
/// <summary>
/// Indicates that the player has never held mentor status in any expansion.
/// </summary>
None = 0,
/// <summary>
/// Indicates that the player was last a mentor during the <c>Shadowbringers</c> expansion.
/// </summary>
Shadowbringers = 1,
/// <summary>
/// Indicates that the player was last a mentor during the <c>Endwalker</c> expansion.
/// </summary>
Endwalker = 2,
/// <summary>
/// Indicates that the player was last a mentor during the <c>Dawntrail</c> expansion.
/// </summary>
Dawntrail = 3,
}