Skip to content

Gradle project mirror of the game hacking library libhat

License

Notifications You must be signed in to change notification settings

project-munashii/libhat-gradle

 
 

Repository files navigation

libhat-gradle

Libhat Gradle is a fork of libhat mirroring the original libhat repository, but with the Gradle build system instead of CMake.

Prebuilt releases

Prebuilt releases are available on the GitHub Packages registry.

repositories {
    maven {
        name = "GitHubPackages"
        url = uri("https://maven.pkg.github.com/project-munashii/libhat-gradle")
        credentials {
            // Set this as your GitHub username.
            username = "username"
            // Create a Personal Access Token that can read packages and set it here.
            password = "ghp_..."
            // Generally, you want these to be set as environment variables in your projects.
        }
    }
}

dependencies {
    // Get the version from the Packages page for the `libhat-gradle` package.
    // Avoid -SNAPSHOT versions.
    implementation("com.github.ZeroMemes:libhat-gradle:VERSION")
}

Notes

  • Prebuilt releases are only available for Windows x64.
  • Prebuilt releases only ship a .lib file for C++.
  • Prebuilt releases are built with MSVC v143.

libhat

Libhat is a modern, high-performance library for C++20 designed around game hacking, made by Brady Hahn under Based Inc.

For more info, see the original repository. This repository contains 0 code or functionality changes.

About

Gradle project mirror of the game hacking library libhat

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • C++ 97.6%
  • C 2.4%