2022-05-18 21:27:38 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-09-15 00:22:10 +00:00
|
|
|
import ModuleUpdate
|
|
|
|
ModuleUpdate.update()
|
2022-05-18 21:27:38 +00:00
|
|
|
|
2024-03-15 16:33:03 +00:00
|
|
|
from worlds.sc2.Client import launch
|
2023-09-15 00:22:10 +00:00
|
|
|
import Utils
|
2022-10-01 13:24:05 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2023-09-15 00:22:10 +00:00
|
|
|
Utils.init_logging("Starcraft2Client", exception_logger="Client")
|
|
|
|
launch()
|