Back to project page MConsole.
The source code is released under:
MIT License
If you think the Android project MConsole listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package pl.skifo.mconsole; /*w ww . ja v a 2 s .com*/ public class AttributedString { public static final int DEFAULT_COLOR = MinecraftColorScheme.MINECRAFT_COLOR__DEFAULT_FG; public final String text; public final int color; //argb public AttributedString(String t, int c) { text = t; color = c; } }