AlbLib.Imaging.AutoGFX.GetObj C# (CSharp) Method

GetObj() private static method

private static GetObj ( int offset, int setindex ) : RawImage
offset int
setindex int
return RawImage
        private static RawImage GetObj(int offset, int setindex)
        {
            byte[] img = new byte[256];
            Array.Copy(cache[setindex], offset, img, 0, 256);
            return new RawImage(img, 16, 16);
        }