mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
10 lines
166 B
Java
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);
|
|
|
|
}
|