Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Currency.cs
Go to the documentation of this file.
1namespace System;
2
3internal struct Currency
4{
5 internal long m_value;
6
7 public Currency(decimal value)
8 {
9 m_value = decimal.ToOACurrency(value);
10 }
11}
Currency(decimal value)
Definition Currency.cs:7