Back to project page donatello-y-raphael.
The source code is released under:
MIT License
If you think the Android project donatello-y-raphael 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.example.ATracePath; //from ww w.j ava 2s .c om import java.util.List; /** * Created by solberg on 21/09/14. */ public class Puzzle { int size; List<Coordinate> coordinate; Puzzle( int _size, List<Coordinate> _coordinate) { size = _size; coordinate = _coordinate; } public int getSize() { return size; } public List<Coordinate> getCoordinate() { return coordinate; } }