ultimatepp/examples/AndroidMath/AndroidMath.java
klugier c0ccc87f10 .examples Fix AndroidMath MemoryManger class
git-svn-id: svn://ultimatepp.org/upp/trunk@9573 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-03-06 12:42:09 +00:00

10 lines
166 B
Java

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