Terraria.Lighting.LightingSwipeData.CopyFrom C# (CSharp) Method

CopyFrom() public method

public CopyFrom ( Lighting from ) : void
from Lighting
return void
            public void CopyFrom(Lighting.LightingSwipeData from)
            {
                this.innerLoop1Start = from.innerLoop1Start;
                this.outerLoopStart = from.outerLoopStart;
                this.innerLoop1End = from.innerLoop1End;
                this.outerLoopEnd = from.outerLoopEnd;
                this.innerLoop2Start = from.innerLoop2Start;
                this.innerLoop2End = from.innerLoop2End;
                this.function = from.function;
                this.jaggedArray = from.jaggedArray;
            }
        }
Lighting.LightingSwipeData