All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.maeda6uiui.mechtatel.natives.windows.MttNativeLoader Maven / Gradle / Ivy

There is a newer version: 0.0.1-alpha3
Show newest version
package com.github.maeda6uiui.mechtatel.natives.windows;

import com.github.maeda6uiui.mechtatel.natives.IMttNativeLoader;
import com.github.maeda6uiui.mechtatel.natives.NativeLoaderUtils;

import java.io.IOException;

/**
 * Loads native libraries for Windows
 *
 * @author maeda6uiui
 */
public class MttNativeLoader implements IMttNativeLoader {
    @Override
    public void loadLibbulletjme() throws IOException {
        NativeLoaderUtils.loadNativeLibFromJar(this.getClass(), "/Bin/Windows64ReleaseSp_bulletjme.dll");
    }

    @Override
    public void loadShaderc() throws IOException {
        NativeLoaderUtils.loadNativeLibFromJar(this.getClass(), "/Bin/shaderc_shared.dll");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy