Back to project page ArchPad.
The source code is released under:
GNU General Public License
If you think the Android project ArchPad 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.Andryyo.ArchPad.target; /*from w w w. java 2 s . c om*/ import java.io.Serializable; /** * Created with IntelliJ IDEA. * User: ??????? * Date: 23.04.13 * Time: 22:28 * To change this template use File | Settings | File Templates. */ public class CRing implements Serializable { public float distanceFromCenter; public int color; public int points; public CRing(int points, float distanceFromCenter, int color) { this.distanceFromCenter = distanceFromCenter; this.color = color; this.points = points; } }