Constructor Coin
- Namespace
- GuildWars2
- Assembly
- GuildWars2.dll
Coin(int, int, int)
Initializes a new instance of the Coin struct with the specified amount of gold, silver, and copper coins.
public Coin(int gold, int silver, int copper)
Parameters
goldintThe amount of gold coins.
silverintThe amount of silver coins.
copperintThe amount of copper coins.
Coin(int, int)
Initializes a new instance of the Coin struct with the specified amount of silver and copper coins.
public Coin(int silver, int copper)
Parameters
Coin(int)
Initializes a new instance of the Coin struct with the specified amount of copper coins.
public Coin(int amount)
Parameters
amountintThe total number of copper coins.