Back to project page go-android.
The source code is released under:
MIT License
If you think the Android project go-android 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.pololanguage.pologo; // w ww .ja va2s .c o m public class StoredMove { int index; int x; int y; StoneColor color; StoredMove(int index, int x, int y, StoneColor color) { this.index = index; this.x = x; this.y = y; this.color = color; } }