An open API service indexing awesome lists of open source software.

https://github.com/rkr35/drg

An injectable .DLL that allows players to write custom modifications for Deep Rock Galactic.
https://github.com/rkr35/drg

deep-rock-galactic dll dll-injection drg hooks mod modding no-dependencies no-heap-allocation no-panic no-std rust ue4 unreal-engine windows

Last synced: 10 days ago
JSON representation

An injectable .DLL that allows players to write custom modifications for Deep Rock Galactic.

Awesome Lists containing this project

README

          

# drg

## Primary goal
Produce a .DLL that players can use to write native Unreal Engine modifications for [Deep Rock Galactic](https://www.deeprockgalactic.com/).

## Secondary goals
Use these restrictions to learn new things:
* No Rust standard library (enforced through `#![no_std]`)
* No third-party crate dependencies
* No heap allocations
* No panic branches (enforced through unlinkable panic_handler)