コード例 #1
0
ファイル: SpriteModel.cs プロジェクト: ycaihua/Infiniminer
        protected void OnRaiseAnimationCallbackEvent(AnimationCallbackEventArgs e)
        {
            EventHandler <AnimationCallbackEventArgs> handler = RaiseAnimationCallbackEvent;

            if (handler != null)
            {
                handler(this, e);
            }
        }
コード例 #2
0
 protected void OnRaiseAnimationCallbackEvent(AnimationCallbackEventArgs e)
 {
     EventHandler<AnimationCallbackEventArgs> handler = RaiseAnimationCallbackEvent;
     if (handler != null)
         handler(this, e);
 }