//
// PartnerSkillRank.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace NosSmooth.Packets.Enums.Mates;
///
/// Ranks of partner sp skills.
///
public enum PartnerSkillRank
{
///
/// The skills rank must be revealed first.
///
NotIdentifiedYet = 0,
///
/// Worst skill rank.
///
F = 1,
///
/// E skill rank.
///
E = 2,
///
/// D skill rank.
///
D = 3,
///
/// C skill rank.
///
C = 4,
///
/// B skill rank.
///
B = 5,
///
/// A skill rank.
///
A = 6,
///
/// Best skill rank.
///
S = 7
}