Skip to content

Instantly share code, notes, and snippets.

View malobre's full-sized avatar

Maël Obréjan malobre

  • EI Maël Obréjan
  • France
  • 15:22 (UTC +02:00)
View GitHub Profile
@malobre
malobre / NativesLoader.java
Last active July 9, 2017 15:47
Simple class that extract and load the lwjgl 3 natives from your jar.
/**
* This code is under the CC BY 4.0 license, http://creativecommons.org/licenses/by/4.0/
*/
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.channels.Channels;
import java.nio.channels.ReadableByteChannel;