21 lines
385 B
Python
21 lines
385 B
Python
"""Forge — in-game cheat & editor overlay for RPG Maker MV/MZ (plugin by len)."""
|
|
|
|
from util.forge.installer import (
|
|
apply_config,
|
|
bundled_plugin_path,
|
|
detect_engine,
|
|
detect_mz,
|
|
install,
|
|
status,
|
|
uninstall,
|
|
)
|
|
|
|
__all__ = [
|
|
"apply_config",
|
|
"bundled_plugin_path",
|
|
"detect_engine",
|
|
"detect_mz",
|
|
"install",
|
|
"status",
|
|
"uninstall",
|
|
]
|