Terraria.WorldSections.SetAllFramesLoaded C# (CSharp) 메소드

SetAllFramesLoaded() 공개 메소드

public SetAllFramesLoaded ( ) : void
리턴 void
        public void SetAllFramesLoaded()
        {
            for (int index = 0; index < this.data.Length; ++index)
            {
                if (!this.data[index][0])
                {
                    this.data[index][0] = true;
                    ++this.frameSectionsLeft;
                }
            }
        }