Back to project page rpg.
The source code is released under:
Apache License
If you think the Android project rpg 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 org.aschyiel.rpg; //from www . j av a 2s. c o m /** * Basically a simple contract for translating the abstract chess-board space * into AndEngine x,y-coordinates. */ public interface PowerChords { /** * Convert zero-indexed matrix space into the world of floats. * * @param m The row. * @param n The column. */ Coords asCoords( int m, int n ); }