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

◆ WriteType()

static void Terraria.ModLoader.WallLoader.WriteType ( ushort wall,
byte[] data,
ref int index,
ref byte flags )
inlinestaticpackage

Definition at line 146 of file WallLoader.cs.

147 {
148 if (wall > 255)
149 {
150 data[index] = (byte)(wall >> 8);
151 index++;
152 flags |= 32;
153 }
154 }