mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-13 06:58:56 +01:00
11 lines
239 B
Java
11 lines
239 B
Java
package com.raylib.game_sample;
|
|
|
|
public class NativeLoader extends android.app.NativeActivity
|
|
{
|
|
static
|
|
{
|
|
System.loadLibrary("openal");
|
|
System.loadLibrary("raylib");
|
|
System.loadLibrary("raylib_game");
|
|
}
|
|
} |