package com.lucasdnd.ags.ui.components; /** * Objects that listen to mouse overs * @author tulio * */ public interface Mouseable { public boolean gotMoused(int mouseX, int mouseY); }