public ManualControlSkillCrazy(ManualController c)
 {
     this.controller = c;
     this.self       = c.ControlUnit;
     this.targetCom  = this.controller.TargetCom;
     this.signalCom  = this.controller.SignalCom;
 }
 private void Init()
 {
     if (this.debugFlag)
     {
         this.touchDebugger = new TouchEventDebug();
         if (this.touchDebugger != null)
         {
             this.touchDebugger.OnInit();
         }
     }
     this.signalCom = new ManualControlSignalMng(this);
     this.targetCom = new ManualControlTarget(this);
     this.RegisterTrigger();
     this.InvokeEveryCom("OnInit", null);
 }