Beispiel #1
0
        public void AddPic(int position, int size, PicType picType, int width, int height)
        {
            var block = new FlacPicBlock(position, size, picType, width, height);

            items.Add(block);
            if (PicBlock == null)
            {
                PicBlock = block;
            }
        }
Beispiel #2
0
        public void AddPic(int size, PicType picType, int width, int height)
        {
            var pic = new FlacPicBlock(size, picType, width, height);

            items.Add(pic);
        }