1
0
Fork 0
DiademCalculator/Source/DiademResourceInfo.cs

27 lines
658 B
C#
Raw Normal View History

2022-03-29 23:22:32 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DiademCalculator
{
public struct DiademResourceInfo
{
public readonly uint Id;
public readonly int Set;
public readonly int ScripsReward;
public readonly int PointsReward;
public readonly int Phase;
2022-03-29 23:22:32 +00:00
public DiademResourceInfo(uint id, int set, int scripsReward, int pointsReward, int phase)
2022-03-29 23:22:32 +00:00
{
Id = id;
Set = set;
ScripsReward = scripsReward;
PointsReward = pointsReward;
Phase = phase;
2022-03-29 23:22:32 +00:00
}
}
}