27 lines
658 B
C#
27 lines
658 B
C#
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;
|
|
|
|
public DiademResourceInfo(uint id, int set, int scripsReward, int pointsReward, int phase)
|
|
{
|
|
Id = id;
|
|
Set = set;
|
|
ScripsReward = scripsReward;
|
|
PointsReward = pointsReward;
|
|
Phase = phase;
|
|
}
|
|
}
|
|
}
|