예제 #1
0
파일: Unit.cs 프로젝트: chiouktae/starcraft
 protected virtual void On_Recall(_RecallEventArgs e)
 {
     if (_Recall != null)
     {
         _Recall(this, e);
     }
 }
예제 #2
0
파일: Unit.cs 프로젝트: chiouktae/starcraft
        private _RecallEventArgs On_RecallForOut()
        {
            _RecallEventArgs args = new _RecallEventArgs();

            On_Recall(args);

            return(args);
        }
예제 #3
0
파일: Unit.cs 프로젝트: chiouktae/starcraft
        private _RecallEventArgs On_Recall(int x, int y)
        {
            _RecallEventArgs args = new _RecallEventArgs(x, y);

            On_Recall(args);

            return(args);
        }