Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ UInt32View

Definition at line 89 of file Vector256DebugView.cs.

90 {
91 get
92 {
93 uint[] array = new uint[8];
94 Unsafe.WriteUnaligned(ref Unsafe.As<uint, byte>(ref array[0]), _value);
95 return array;
96 }
97 }