package project;

interface WeaponInfo {
  
  static final int ShotgunAttackPower = 5;
  static final int RocketAttackPower = 8;
  static final int ShotgunShots = 4;
  static final int RocketShots = 3;
  
}