com.github.maeda6uiui.mechtatel.natives.windows.MttNativeLoader Maven / Gradle / Ivy
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");
}
}