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

◆ Requires64bits

bool System.Reflection.PortableExecutable.ManagedTextSection.Requires64bits
getpackage

Definition at line 40 of file ManagedTextSection.cs.

41 {
42 get
43 {
44 if (Machine != Machine.Amd64 && Machine != Machine.IA64)
45 {
46 return Machine == Machine.Arm64;
47 }
48 return true;
49 }
50 }