public ccTouchHandlerHelperData(string touchesSel, string touchSel, kCCTouchSelectorFlag type)
 {
     this.touchesSel = touchesSel;
     this.touchSel   = touchSel;
     this.type       = type;
 }
Пример #2
0
		/** initializes a TouchHandler with a delegate and a priority */
		protected virtual void init(System.Object aDelegate, int aPriority){
			this.delegate_ = aDelegate;
			_priority = aPriority;
			_enabledSelectors = 0;
		}
Пример #3
0
 /** initializes a TouchHandler with a delegate and a priority */
 protected virtual void init(System.Object aDelegate, int aPriority)
 {
     this.delegate_    = aDelegate;
     _priority         = aPriority;
     _enabledSelectors = 0;
 }
		public ccTouchHandlerHelperData(string touchesSel, string touchSel, kCCTouchSelectorFlag type){
			this.touchesSel = touchesSel;
			this.touchSel = touchSel;
			this.type = type;
		}