View Javadoc

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 LinkGunVsShieldGunShootingTest extends AbstractWeaponShootingTest {
6   
7   	@Override
8   	protected ItemType getWeapon() {
9   		return ItemType.LINK_GUN;
10  	}
11  
12  	@Override
13  	protected ItemType getAmmo() {
14  		return ItemType.LINK_GUN_AMMO;
15  	}
16  	
17  	@Override
18  	protected int getTeamSizeBlue() {
19  		return 3;
20  	}
21  	
22  	protected int getTeamSizeRed() {
23  		return 1;
24  	}
25  }