15 lines
No EOL
309 B
C#
15 lines
No EOL
309 B
C#
namespace WingsEmu.Game.Raids;
|
|
|
|
public class DropChance
|
|
{
|
|
public DropChance(int chance, int itemVnum, int amount)
|
|
{
|
|
Chance = chance;
|
|
ItemVnum = itemVnum;
|
|
Amount = amount;
|
|
}
|
|
|
|
public int Chance { get; }
|
|
public int ItemVnum { get; }
|
|
public int Amount { get; }
|
|
} |