Skip to content
This repository has been archived by the owner on Jun 26, 2023. It is now read-only.
/ drg Public archive

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

Notifications You must be signed in to change notification settings

rkr35/drg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

drg

Primary goal

Produce a .DLL that players can use to write native Unreal Engine modifications for Deep Rock Galactic.

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)