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.
- Host: GitHub
- URL: https://github.com/rkr35/drg
- Owner: rkr35
- Created: 2021-05-11T23:03:18.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-05-04T02:20:41.000Z (about 3 years ago)
- Last Synced: 2023-05-04T03:24:47.381Z (about 3 years ago)
- Topics: deep-rock-galactic, dll, dll-injection, drg, hooks, mod, modding, no-dependencies, no-heap-allocation, no-panic, no-std, rust, ue4, unreal-engine, windows
- Language: Rust
- Homepage:
- Size: 809 KB
- Stars: 9
- Watchers: 2
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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)