mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00

* Factorio: move Client into world folder * Factorio: declare Client as Client Component * FactorioClient: use centralized launch_subprocess * TextClient: make always available
13 lines
274 B
Python
13 lines
274 B
Python
from __future__ import annotations
|
|
|
|
import ModuleUpdate
|
|
ModuleUpdate.update()
|
|
|
|
from worlds.factorio.Client import check_stdin, launch
|
|
import Utils
|
|
|
|
if __name__ == "__main__":
|
|
Utils.init_logging("FactorioClient", exception_logger="Client")
|
|
check_stdin()
|
|
launch()
|