Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Producer.cs
Go to the documentation of this file.
2
3internal readonly struct Producer<TKey>
4{
5 internal readonly TKey MaxKey;
6
7 internal readonly int ProducerIndex;
8
9 internal Producer(TKey maxKey, int producerIndex)
10 {
11 MaxKey = maxKey;
12 ProducerIndex = producerIndex;
13 }
14}
Producer(TKey maxKey, int producerIndex)
Definition Producer.cs:9