Aiv.Fast2D.Example.Tilemap.GetTile C# (CSharp) 메소드

GetTile() 개인적인 메소드

private GetTile ( int x, int y ) : int
x int
y int
리턴 int
        private int GetTile(int x, int y)
        {
            int index = (y * this.width) + x;
            return this.map[index];
        }