Skip to content

Instantly share code, notes, and snippets.

@dlwh
Created January 20, 2011 05:43
Show Gist options
  • Save dlwh/787473 to your computer and use it in GitHub Desktop.
Save dlwh/787473 to your computer and use it in GitHub Desktop.
main method for MineMineMine
public static void main(String[] args) {
ProxyBotFactory factory = new ProxyBotFactory() {
@Override
public ProxyBot getBot(Game g) {
return new Overmind(new MineMineMine(), new Properties());
}
};
new ProxyServer(factory).run();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment