Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Step

override long System.Data.AutoIncrementBigInteger.Step
getsetpackage

Definition at line 44 of file AutoIncrementBigInteger.cs.

45 {
46 get
47 {
48 return (long)_step;
49 }
50 set
51 {
52 if (value == 0L)
53 {
54 throw ExceptionBuilder.AutoIncrementSeed();
55 }
56 if (_step != value)
57 {
58 if (_current != Seed)
59 {
61 }
62 _step = value;
63 }
64 }
65 }