Skip to content

Instantly share code, notes, and snippets.

@whilb
Last active January 4, 2016 13:18
Show Gist options
  • Save whilb/8626690 to your computer and use it in GitHub Desktop.
Save whilb/8626690 to your computer and use it in GitHub Desktop.
example of an abstract class
package net.aerenserve.melded.requirements;
import org.bukkit.plugin.Plugin;
public abstract class Requirement {
protected Plugin plugin;
public RequirementType type;
protected Requirement(Plugin plugin, RequirementType type) {
this.plugin = plugin;
this.type = type;
}
public RequirementType getType() {
return type;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment