Skip to content

Instantly share code, notes, and snippets.

@mastercoms
Created April 5, 2016 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mastercoms/68e18e954927524b966aebce686693e4 to your computer and use it in GitHub Desktop.
Save mastercoms/68e18e954927524b966aebce686693e4 to your computer and use it in GitHub Desktop.
public enum BlockFunctionType {
PLACE_SOUND(GlowSound.class),
PULSE(Integer.class);
private Class[] clazz;
BlockFunctionType(Class... clazz) {
this.clazz = clazz;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment