Added a toString for appearance logging

This commit is contained in:
Bill Kuker 2012-07-01 14:52:52 +00:00 committed by U-WINDOWS-C28163E\Administrator
parent a7ee3143bb
commit 5531e2c3ca

View File

@ -55,4 +55,9 @@ public class Color {
this.alpha = alpha;
}
@Override
public String toString() {
return "Color [r=" + red + ", g=" + green + ", b=" + blue + ", a=" + alpha + "]";
}
}