ModernUO/Projects/UOContent/Engines/Veteran Rewards/RewardCategory.cs
Kamron Batman fbafd7210d
fix(core): Converts some packets & misc fixes/cleanup (#414)
- [X] Adds a stop music packet
- [X] Converts chat packets
- [X] Breaks out chat code a little bit more
- [X] Converts character statue animation packet
- [X] Renames some folders to have spaces
- [X] Organizes and consolidates incoming/outgoing packets for other content
- [X] Fixes virtual checks
2021-01-16 21:01:54 -08:00

25 lines
525 B
C#

using System.Collections.Generic;
namespace Server.Engines.VeteranRewards
{
public class RewardCategory
{
public RewardCategory(int name)
{
Name = name;
Entries = new List<RewardEntry>();
}
public RewardCategory(string name)
{
NameString = name;
Entries = new List<RewardEntry>();
}
public int Name { get; }
public string NameString { get; }
public List<RewardEntry> Entries { get; }
}
}