Skip to content

Universal file redirector for Reloaded Mod Loader II.

License

GPL-3.0, LGPL-3.0 licenses found

Licenses found

GPL-3.0
LICENSE.md
LGPL-3.0
LICENSE-INTERFACES.md
Notifications You must be signed in to change notification settings

Reloaded-Project/reloaded.universal.redirector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reloaded II: Universal File Redirector



Assert.Equal(expectedPath, actualPath);

1 Test Failed. Unexpected path.

Id: reloaded.universal.monitor

About This Project

This project is a set of mods for Reloaded II Mod Loader that provides support for file redirection that can be used by other mods.
In other words, it makes games load files from your mod folders rather than the game folder.

Inside This Repository

Mods

(Click to read individual mods' readmes)

How to Use The API (Programmers)

  • Add the Reloaded.Universal.Redirector.Interfaces NuGet package to your project.
  • Add the dependency reloaded.universal.redirector to ModDependencies in your ModConfig.json.
  • In your Start() function, acquire the Controller _modLoader.GetController<IRedirectorController>()

For more information and best practices, refer to Reloaded-II Docs: Inter Mod Communication.

For an example, consider looking at Reloaded.Universal.Monitor in this repository.