Package com.fish

Examples of com.fish.Fish


  }
 
  public void mouseClicked(MouseEvent e) {
    if(e.getButton() == MouseEvent.BUTTON1){
      Fish f = World.clicked(e.getX(),e.getY());
     
      if(f != null){
        fiwindow.clickedOnFish(f);
      }
    }else if(e.getButton() == MouseEvent.BUTTON3){
View Full Code Here

TOP

Related Classes of com.fish.Fish

Copyright © 2018 www.massapicom. 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.