2021-06-06 17:50:48 +02:00
|
|
|
from __future__ import annotations
|
2021-10-19 01:47:11 +02:00
|
|
|
|
2022-04-07 10:19:18 +02:00
|
|
|
import ModuleUpdate
|
|
|
|
|
ModuleUpdate.update()
|
|
|
|
|
|
2023-06-25 02:31:25 +02:00
|
|
|
from worlds.factorio.Client import check_stdin, launch
|
2021-11-10 15:35:43 +01:00
|
|
|
import Utils
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2021-11-17 22:46:32 +01:00
|
|
|
Utils.init_logging("FactorioClient", exception_logger="Client")
|
2022-11-01 01:53:09 +01:00
|
|
|
check_stdin()
|
2023-06-25 02:31:25 +02:00
|
|
|
launch()
|