예제 #1
0
 public void playJumpAnimation()
 {
     if (gameEntity != null)
     {
         gameEntity.playJumpAnimation();
     }
 }
 public void playJumpAnimation()
 {
     //if(gameEntity != null)
     if (!System.Object.ReferenceEquals(gameEntity, null))
     {
         gameEntity.playJumpAnimation();
     }
 }