Skip to content
@Reloaded-Project

The Reloaded Project

Free and open source set of modding tools and libraries. Built with LOVE 💖 from scratch by @Sewer56. Contributions welcome!

🎮 Mod Loaders

Repository Description Language
Reloaded-II Universal .NET modding framework for native x86/x64 games C#
Reloaded3 [WIP] Design specification for the next generation of Reloaded Rust

📦 Core Libraries / C#

Reusable libraries for hooking, injection, memory manipulation, and more. Used by Reloaded-II and standalone projects.

Repository Description
Reloaded.Hooks Advanced native function hooks for x86/x64: detours and API hooking
Reloaded.Injector DLL injection: inject x86 DLLs into x86 processes from an x64 host
Reloaded.Memory.SigScan High-performance byte pattern / PE signature scanner (5000+ MB/s/core, 30000+ with AVX)
Reloaded.Memory Managed, high-performance memory manipulation with an easy-to-use API
Reloaded.Assembler .NET wrapper around Flat Assembler (FASM) for x86/x64
Reloaded.Memory.Buffers Efficient shared concurrent unmanaged memory storage with fixed, stable addresses across runs (C# & Rust)

🦀 Core Libraries / Rust

Next-generation Rust rewrites and new libraries.

Repository Description
Reloaded.Hooks-rs [WIP] no_std Rust rewrite of Reloaded.Hooks

🔌 Reloaded-II Mods & Extensions

Mods bundled with Reloaded-II.

Repository Description
reloaded.universal.redirector Redirects game file reads to mod files, replacing assets without modifying originals
Reloaded.Universal.DInputPleaseCooperate Fix DirectInput blocking screenshots

⚙️ DevOps & CI Actions

Reusable GitHub Actions for Rust, .NET, and docs. Not specific to Reloaded. All MIT licensed.

Repository Description
devops-mkdocs Build & publish MkDocs Material sites
devops-publish-action Publish artifacts to GitHub Releases & package repos
devops-changelog Build & publish automated changelogs
devops-rust-test-and-coverage Rust test + coverage with cross-compilation support
devops-rust-test-in-latest-wine Test Rust projects using Wine
devops-rust-lightweight-binary Build & cross-compile lightweight no_std Rust binaries with Profile-Guided Optimization (PGO)
devops-rust-cbindgen Generate C/C++ bindings from Rust via cbindgen
devops-rust-c-library-to-dotnet Build C# wrapper for Rust library via csbindgen
devops-cargo-semver-checks-action Cargo semver checks with built-in checkout, caching & filtering

🏗️ Infrastructure

Shared data and supporting services for Reloaded-II.

Repository Description
Reloaded-II.Index Mod search index and backup source for mod updates
Reloaded.Community Community sourced game configurations for Reloaded-II

🛠️ Config & Templates

Shared configs, templates, and style resources.

Repository Description
Reloaded.MkDocsMaterial.Themes.R2 MkDocs Material theme matching Reloaded-II & Reloaded3's style
reloaded-templates-rust Common project configs for cross-platform Rust development
Reloaded.Project.Configurations .NET project template: editor configs, NuGet settings, code style, license files
License License documentation for the project

🔧 Misc & Examples

Demos, examples, and smaller utilities.

Repository Description
Reloaded.Core.Bootstrap Demo: inject CoreCLR (.NET runtime) into unmanaged processes
Reloaded.Messaging Extensible event-like messaging over LiteNetLib (local & remote)

📁 Archived

These repos are no longer maintained but preserved for reference.

Repository Description Superseded By
reloaded.universal.steamhook Prevent Steam from restarting game when launched externally Built into Reloaded-II
devops-rust-test-in-wine Test Rust in Wine on Linux devops-rust-test-in-latest-wine

🤝 Contributing

Each repository has its own contribution guidelines; check its issue tracker or CONTRIBUTING.md for details.

📄 Licensing

Licensing varies by repository:

  • Mod loaders (Reloaded-II): GPL-3.0
  • Core libraries: LGPL-3.0 or MIT (see individual repos)
  • DevOps actions & config: MIT

See the License repo for full details.

Popular repositories Loading

  1. Reloaded-II Reloaded-II Public

    Universal .NET Core Powered Modding Framework for any Native Game X86, X64.

    C# 1k 120

  2. Reloaded.Hooks Reloaded.Hooks Public

    Advanced native function hooks for x86, x64. Welcome to the next level!

    C# 254 39

  3. Reloaded.Injector Reloaded.Injector Public

    C# DLL Injection Library capable of injecting x86 DLLs to x86 process from x64 processes.

    C# 168 34

  4. Reloaded.Memory.SigScan Reloaded.Memory.SigScan Public

    Simple good performance byte pattern/PE signature scanner, allowing upwards of 5000MB/s per core (30000+MB/s with AVX) on modern hardware.

    C# 105 17

  5. Reloaded.Memory Reloaded.Memory Public

    Managed, high performance, fully featured memory manipulation library written in C#, providing a very easy to use API.

    C# 98 23

  6. Reloaded.Assembler Reloaded.Assembler Public

    Minimal .NET wrapper around the simple, easy to use Flat Assembler written by Tomasz Grysztar. Supports both x64 and x86 development.

    C# 40 21

Repositories

Showing 10 of 34 repositories
  • Reloaded-II.Index Public

    Index for update library related operations, such as searching for mods.

    Reloaded-Project/Reloaded-II.Index's past year of commit activity
    1 0 0 0 Updated Sep 9, 2026
  • reloaded-templates-rust Public

    Common Project Configurations for Developing and Shipping Cross Platform Rust code in The Reloaded Project

    Reloaded-Project/reloaded-templates-rust's past year of commit activity
    Python 1 MIT 2 0 0 Updated Sep 8, 2026
  • ReloadedCode Public

    Lightweight, heavily optimized coding tool implementations for LLM-powered development agents.

    Reloaded-Project/ReloadedCode's past year of commit activity
    Rust 9 Apache-2.0 4 6 0 Updated Sep 7, 2026
  • Reloaded-II Public

    Universal .NET Core Powered Modding Framework for any Native Game X86, X64.

    Reloaded-Project/Reloaded-II's past year of commit activity
    C# 1,024 GPL-3.0 120 185 (2 issues need help) 2 Updated Aug 13, 2026
  • devops-publish-action Public

    A GitHub Action for publishing the artifacts to GitHub Releases and code packages to the package repositories

    Reloaded-Project/devops-publish-action's past year of commit activity
    Python 0 MIT 0 0 0 Updated Jul 21, 2026
  • devops-rust-c-library-to-dotnet Public

    GitHub Action for building a C# wrapper library for a Rust library. Use with csbindgen.

    Reloaded-Project/devops-rust-c-library-to-dotnet's past year of commit activity
    0 MIT 0 0 0 Updated Jul 21, 2026
  • devops-rust-test-and-coverage Public

    A GitHub Action for Testing Rust Projects with Coverage. Supports Cross Compilation.

    Reloaded-Project/devops-rust-test-and-coverage's past year of commit activity
    Python 1 MIT 0 0 0 Updated Jun 27, 2026
  • devops-rust-cbindgen Public

    A GitHub Actions wrapper around running `cbindgen` to generate C/C++ bindings from Rust code.

    Reloaded-Project/devops-rust-cbindgen's past year of commit activity
    0 MIT 0 0 0 Updated Jun 22, 2026
  • devops-mkdocs Public

    GitHub Actions Composite Action for Building and (Optionally) Publishing a MkDocs Material Website

    Reloaded-Project/devops-mkdocs's past year of commit activity
    2 MIT 1 1 0 Updated Jun 22, 2026
  • devops-changelog Public

    GitHub Actions Composite Action for Building and (Optionally) Publishing a An Automated Changelog

    Reloaded-Project/devops-changelog's past year of commit activity
    0 MIT 0 0 0 Updated Jun 22, 2026