Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ReservedBlob.cs
Go to the documentation of this file.
2
3public readonly struct ReservedBlob<THandle> where THandle : struct
4{
5 public THandle Handle { get; }
6
7 public Blob Content { get; }
8
9 internal ReservedBlob(THandle handle, Blob content)
10 {
11 Handle = handle;
12 Content = content;
13 }
14
16 {
17 return new BlobWriter(Content);
18 }
19}
ReservedBlob(THandle handle, Blob content)