Package ru.vagrant_ai.questionmarkgame.obj.proj

Examples of ru.vagrant_ai.questionmarkgame.obj.proj.Projectile


      gun_f.rotate((float) -vector_mouse.getTheta()+180);
    }

    for (int i = 0; i < bullet_array.size(); ++i)
    {
      Projectile bullet = bullet_array.get(i);
      bullet.update();
      if (!bullet.checkActive())
      {
        bullet_array.remove(i);
        i--;     
      }
      bullet.render(g);
    }
  }
View Full Code Here

TOP

Related Classes of ru.vagrant_ai.questionmarkgame.obj.proj.Projectile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.