public TerminalCompositeView(ITerminalCompositeViewDelegate del, float width, float height) : base(width, height) { if (del == null) { throw new NullReferenceException("Delegate is null"); } m_delegate = del; CreateUI(); }