OurSonic.Level.SonicImage.SonicImage C# (CSharp) Method

SonicImage() private method

private SonicImage ( byte bytes, int palette, int width, int height ) : System
bytes byte
palette int
width int
height int
return System
        public SonicImage(byte[] bytes, int[][] palette, int width, int height)
        {
            Bytes = bytes;
            Palette = palette;
            Width = width;
            Height = height;
        }
    }
SonicImage