This commit is contained in:
Clisprail
2013-12-12 23:24:06 +01:00
parent 1b1bff070f
commit 2fc11cb109
3 changed files with 5 additions and 1 deletions
+1
View File
@@ -43,3 +43,4 @@ parabotv2/src/META-INF/MANIFEST.MF
*.idx4 *.idx4
*.idx3 *.idx3
/bin
@@ -13,6 +13,6 @@ public class Configuration {
public static final String GET_SERVER_PROVIDER = "http://sdn.parabot.org/providers/%s"; public static final String GET_SERVER_PROVIDER = "http://sdn.parabot.org/providers/%s";
public static final String GET_BOT_VERSION = "http://bot.parabot.org/version.txt"; public static final String GET_BOT_VERSION = "http://bot.parabot.org/version.txt";
public static final double BOT_VERSION = 2.03; public static final double BOT_VERSION = 2.04; // BETA
} }
@@ -9,6 +9,9 @@ import java.awt.Graphics;
*/ */
public interface Paintable { public interface Paintable {
/**
* @param g
*/
public void paint(Graphics g); public void paint(Graphics g);
} }