- [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
25 lines
525 B
C#
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; }
|
|
}
|
|
}
|