Skip to content

Instantly share code, notes, and snippets.

@natemort
Created January 11, 2015 01:19
Show Gist options
  • Select an option

  • Save natemort/a503bcd855d738b5e5d4 to your computer and use it in GitHub Desktop.

Select an option

Save natemort/a503bcd855d738b5e5d4 to your computer and use it in GitHub Desktop.
Example for BukkitGuice
@PluginService(value=SomeNmsThing.class, minecraftVersion="1_6R1")
public class NmsThing1_6 implements SomeNmsThing {
void doSomething() {}
}
@PluginService(value=SomeNmsThing.class, minecraftVersion="1_7R1")
public class NmsThing1_7 implements SomeNmsThing {
void doSomething() {System.exit(0);}
}
public interface SomeNmsThing {
void doSomething();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment