public TreeListItem(IScreen screen, IInputDevice inputDevice, IOCRReader ocr, TreeListItem parentItem, int left, int right, int top, int offset, int height) : base(screen, inputDevice, top, top + 16, left, right) { ParentItem = parentItem; CharacterOffset = offset; CharacterHeight = height; Colors = new[] { new byte[] { 0, 0, 0 } }; OCR = ocr; }