mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-23 00:07:49 +01:00
Rename namespace PlayerState to Player
This commit is contained in:
parent
2cf869872d
commit
64d4f7061a
16 changed files with 34 additions and 22 deletions
27
Dalamud/Game/Player/MentorVersion.cs
Normal file
27
Dalamud/Game/Player/MentorVersion.cs
Normal 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,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue