Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
StreamConstraints.cs
Go to the documentation of this file.
2
3internal readonly struct StreamConstraints
4{
5 public readonly object? GuardOpt;
6
7 public readonly long ImageStart;
8
9 public readonly int ImageSize;
10
11 public StreamConstraints(object? guardOpt, long startPosition, int imageSize)
12 {
13 GuardOpt = guardOpt;
14 ImageStart = startPosition;
15 ImageSize = imageSize;
16 }
17}
StreamConstraints(object? guardOpt, long startPosition, int imageSize)