Created
January 20, 2011 05:43
-
-
Save dlwh/787473 to your computer and use it in GitHub Desktop.
main method for MineMineMine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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