Skip to content

Instantly share code, notes, and snippets.

@yasith
Created June 23, 2012 11:25
Show Gist options
  • Save yasith/2977947 to your computer and use it in GitHub Desktop.
Save yasith/2977947 to your computer and use it in GitHub Desktop.
Listener for the libGDX Button
package yasith.util;
public interface ButtonListener {
// Called by Buttons when they are clicked
public abstract void onClickListener(String key);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment