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