Package ru.vagrant_ai.questionmarkgame.obj.proj

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


          ShotgunProjectile shotgun_shot = new ShotgunProjectile(gun_point);
          bullet_array.add(shotgun_shot);
        }
        else if (opt_lightning_mode)
        {
          LightningProjectile lightning_shot = new LightningProjectile(gun_point);
          bullet_array.add(lightning_shot);
        }
        else
        {
          Bullet bullet = new Bullet(gun_point);
View Full Code Here

TOP

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

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.