Beispiel #1
0
 private void DoShellStuff(Shell shell)
 {
     if (shell.velocity.X != 0)
         OnHitEnemy();
 }
Beispiel #2
0
 public static bool ShellIsMoving(Shell shell)
 {
     if (shell.velocity.X == 0)
         return false;
     return true;
 }