- [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
22 lines
501 B
C#
22 lines
501 B
C#
using System;
|
|
|
|
namespace Server.Engines.VeteranRewards
|
|
{
|
|
public class RewardList
|
|
{
|
|
public RewardList(TimeSpan interval, int index, RewardEntry[] entries)
|
|
{
|
|
Age = TimeSpan.FromDays(interval.TotalDays * index);
|
|
Entries = entries;
|
|
|
|
for (var i = 0; i < entries.Length; ++i)
|
|
{
|
|
entries[i].List = this;
|
|
}
|
|
}
|
|
|
|
public TimeSpan Age { get; }
|
|
|
|
public RewardEntry[] Entries { get; }
|
|
}
|
|
}
|