Back to project page android-chess.
The source code is released under:
MIT License
If you think the Android project android-chess 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 jwtc.chess; /* w w w. j a v a2 s .co m*/ public class PGNEntry { public String _sMove, _sAnnotation; public int _move; public PGNEntry(String sM, String sA, int m){ _sMove = sM; _sAnnotation = sA; _move = m; } }