mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05: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");
|
|
}
|
|
} |