package project;

interface Fireable {
  void Fire() throws NoShotException;
  boolean MoreShot();
  
}