1 package nl.tudelft.pogamut.ut2004.agent.module.shooting.weapon;
2
3 import cz.cuni.amis.pogamut.ut2004.communication.messages.ItemType;
4
5 public class ShieldGunVsShieldGunShootingTest extends AbstractWeaponShootingTest {
6 @Override
7 protected ItemType getWeapon() {
8 return ItemType.SHIELD_GUN;
9 }
10
11 @Override
12 protected ItemType getAmmo() {
13 return ItemType.SHIELD_GUN_AMMO;
14 }
15
16 @Override
17 protected boolean shouldTestSecondary() {
18 return false;
19 }
20 }