org.lwjgl.util.meow.LibMeow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-meow Show documentation
Show all versions of lwjgl-meow Show documentation
An extremely fast non-cryptographic hash.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.util.meow;
import org.lwjgl.system.*;
/** Initializes the meow shared library. */
final class LibMeow {
static {
String libName = Platform.mapLibraryNameBundled("lwjgl_meow");
Library.loadSystem(System::load, System::loadLibrary, LibMeow.class, libName);
}
private LibMeow() {
}
static void initialize() {
// intentionally empty to trigger static initializer
}
}