Package res.guns

Source Code of res.guns.GunQueen

/* 
  PlAr is Platform Arena: a 2D multiplayer shooting game
  Copyright (c) 2010, Antonio Ragagnin <spocchio@gmail.com>
    All rights reserved.
*/

package res.guns;

import plar.core.Gun;

import plar.core.ElementBullet;

public class GunQueen extends Gun {

  public GunQueen() {
    super();
    gunName = "Standard Gun";
    gunUseAmmo = 1;
  }

  public void createBullet() {
    initializeShoot(new ElementBullet());
  }
}
TOP

Related Classes of res.guns.GunQueen

TOP
Copyright © 2018 www.massapi.com. 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.