mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 18:27:24 +01:00
21 lines
494 B
C#
21 lines
494 B
C#
using Lumina.Excel.GeneratedSheets;
|
|
|
|
namespace Glamourer
|
|
{
|
|
public readonly struct Job
|
|
{
|
|
public readonly string Name;
|
|
public readonly string Abbreviation;
|
|
public readonly ClassJob Base;
|
|
|
|
public uint Id
|
|
=> Base.RowId;
|
|
|
|
public Job(ClassJob job)
|
|
{
|
|
Base = job;
|
|
Name = job.Name.ToString();
|
|
Abbreviation = job.Abbreviation.ToString();
|
|
}
|
|
}
|
|
}
|