Exemplo n.º 1
0
        public static CCMenuItemLabel itemWithLabel(CCNode label, SelectorProtocol target, SEL_MenuHandler selector)
        {
            CCMenuItemLabel cCMenuItemLabel = new CCMenuItemLabel();

            cCMenuItemLabel.initWithLabel(label, target, selector);
            return(cCMenuItemLabel);
        }
Exemplo n.º 2
0
        public static CCMenuItemLabel itemWithLabel(CCNode label)
        {
            CCMenuItemLabel cCMenuItemLabel = new CCMenuItemLabel();

            cCMenuItemLabel.initWithLabel(label, null, null);
            return(cCMenuItemLabel);
        }
Exemplo n.º 3
0
        /// <summary>
        /// creates a CCMenuItemLabel with a Label. Target and selector will be nill
        /// </summary>
        public static CCMenuItemLabel itemWithLabel(CCNode label)
        {
            CCMenuItemLabel pRet = new CCMenuItemLabel();

            pRet.initWithLabel(label, null, null);

            return(pRet);
        }
        /// <summary>
        /// creates a CCMenuItemLabel with a Label. Target and selector will be nill 
        /// </summary>
        public static CCMenuItemLabel itemWithLabel(CCNode label)
        {
            CCMenuItemLabel pRet = new CCMenuItemLabel();
            pRet.initWithLabel(label, null, null);

            return pRet;
        }
        //public override CCPoint anchorPoint
        //{
        //    get
        //    {
        //        return m_pLabel.anchorPoint;
        //    }
        //    set
        //    {
        //        m_pLabel.anchorPoint = value;
        //    }
        //}
        /// <summary>
        /// creates a CCMenuItemLabel with a Label, target and selector
        /// </summary>
        public static CCMenuItemLabel itemWithLabel(CCNode label, SelectorProtocol target, SEL_MenuHandler selector)
        {
            CCMenuItemLabel pRet = new CCMenuItemLabel();
            pRet.initWithLabel(label, target, selector);

            return pRet;
        }