package com.visai.cromakga3d;

import org.libsdl.app.SDLActivity;

public class CromakgaActivity extends SDLActivity
{
    // Loaded in order before the app starts. "app" is the CMake target name, so it resolves to
    // libapp.so — renaming the target means renaming it here too.
    @Override
    protected String[] getLibraries()
    {
        return new String[] { "SDL3", "SDL3_ttf", "app" };
    }
}
