Let mods specify dependency load order
Pathoschild opened this issue ยท 1 comments
When a mod adds a dependency to its manifest (see #285), let it specify the order it should be loaded:
{
...,
"Dependencies": [
{
"UniqueId": "EntoaroxFramework",
"LoadOrder": "After"
}
]
}
The possible values are:
Before
(default): load the dependency before this mod.After
: load the dependency after this mod.
Split from #248.