mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
19 lines
334 B
Java
19 lines
334 B
Java
package com.virtualapplications.play;
|
|
|
|
public class StatsManager
|
|
{
|
|
static
|
|
{
|
|
System.loadLibrary("Play");
|
|
}
|
|
|
|
public static native int getFrames();
|
|
|
|
public static native int getDrawCalls();
|
|
|
|
public static native void clearStats();
|
|
|
|
public static native boolean isProfiling();
|
|
|
|
public static native String getProfilingInfo();
|
|
}
|