Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Constant.cs
Go to the documentation of this file.
2
3public readonly struct Constant
4{
5 private readonly MetadataReader _reader;
6
7 private readonly int _rowId;
8
10
12
14
16
17 internal Constant(MetadataReader reader, int rowId)
18 {
19 _reader = reader;
20 _rowId = rowId;
21 }
22}
TypeCode
Definition TypeCode.cs:4
static ConstantHandle FromRowId(int rowId)
Constant(MetadataReader reader, int rowId)
Definition Constant.cs:17
readonly MetadataReader _reader
Definition Constant.cs:5