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

SetSectionFramed() 공개 메소드

public SetSectionFramed ( int x, int y ) : void
x int
y int
리턴 void
        public void SetSectionFramed(int x, int y)
        {
            if (x < 0 || x >= this.width || (y < 0 || y >= this.height) || this.data[y * this.width + x][1])
                return;
            this.data[y * this.width + x][1] = true;
            --this.frameSectionsLeft;
        }