示例#1
0
        public frmSysTray(clsActors actors)
        {
            _check_for_attack.Interval = 60000; // check for attacks once per minute
            _check_for_attack.Tick += new EventHandler(_check_for_attack_Tick);
            _check_for_attack.Enabled = true;

            _check_for_reenable.Interval = 60000;
            _check_for_reenable.Tick += new EventHandler(_check_for_reenable_Tick);
            _check_for_reenable.Enabled = true;

            _actors = actors;

            InitializeComponent();
        }
 public frmStatAnalyzer(clsActors actors)
 {
     _actors = actors;
     _monger = _actors.Collector;
     InitializeComponent();
 }
示例#3
0
 public frmED(clsActors Actors)
 {
     _actors = Actors;
     InitializeComponent();
 }