nexusforever/Source/NexusForever.Shared/GameTable/Model/SpellLevelEntry.cs
2018-10-09 12:03:35 +13:00

12 lines
287 B
C#

namespace NexusForever.Shared.GameTable.Model
{
public class SpellLevelEntry
{
public uint Id;
public uint ClassId;
public uint CharacterLevel;
public uint PrerequisiteId;
public uint Spell4Id;
public float CostMultiplier;
}
}