mirror of
https://github.com/ModOrganizer2/modorganizer-basic_games.git
synced 2026-07-27 14:07:29 -07:00
* Oblivion Remastered updates - Handle invalid JSON - Remove outdated pak sorting code - Start from 8999 for pak directories - Leaves space for early loaders - Update MagicLoader handling for more dir names --------- Co-authored-by: Jeremy Rimpo <jeremy.rimpo@servermonkey.com>
15 lines
322 B
Python
15 lines
322 B
Python
from typing import TypedDict
|
|
|
|
PLUGIN_NAME = "Oblivion Remastered Support Plugin"
|
|
|
|
|
|
class UE4SSModInfo(TypedDict):
|
|
mod_name: str
|
|
mod_enabled: bool
|
|
|
|
|
|
DEFAULT_UE4SS_MODS: list[UE4SSModInfo] = [
|
|
{"mod_name": "BPML_GenericFunctions", "mod_enabled": True},
|
|
{"mod_name": "BPModLoaderMod", "mod_enabled": True},
|
|
]
|