Back to project page pixel-art.
The source code is released under:
Apache License
If you think the Android project pixel-art 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 com.jaween.pixelart.tools.attributes; //w ww. j a v a2s . c o m /** * Created by ween on 11/30/14. */ public class MagicWandToolAttributes extends ToolAttributes { private int threshold; public int getThreshold() { return threshold; } public void setThreshold(int threshold) { this.threshold = threshold; } }