ultimatepp/examples/AndroidMath/AndroidMath.java
klugier 6576e4eafe .exampls Added more comments to AndroidMath
git-svn-id: svn://ultimatepp.org/upp/trunk@9586 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-03-12 11:44:12 +00:00

13 lines
232 B
Java

package org.upp.AndroidMath;
/**
* Native math functions from package AndroidMathUtility.
*/
public class AndroidMath
{
private AndroidMath() {}
// Native stuff - C/C++
public static native int power(int number, int n);
}