Back to project page minecraft-connect-4.
The source code is released under:
MIT License
If you think the Android project minecraft-connect-4 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* COPYRIGHT (C) 2014 Aleksandr Belkin. All Rights Reserved. */ package sq.squ1rr.mcc4.util; /*from w ww . ja va 2s . c o m*/ /** * Compile time constants. * @author Aleksandr Belkin */ public class GlobalConstants { /** debug flag */ public static final boolean DEBUG = true; /** delay between AI turn */ public static final int AI_DELAY = 200; // ms /** delay between WIN and dialogue */ public static final int WIN_DELAY = 1000; // 1s }