ModernUO/Projects/UOContent/Engines/Veteran Rewards/RewardList.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

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; }
}
}