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

            m_delegate = del;

            CreateUI();
        }
Exemplo n.º 2
0
        public TerminalCompositeView(ITerminalCompositeViewDelegate del, float width, float height)
            : base(width, height)
        {
            if (del == null)
            {
                throw new NullReferenceException("Delegate is null");
            }

            m_delegate = del;

            CreateUI();
        }