A Hat in Time: Implement New Game (#2640)

Adds A Hat in Time as a supported game in Archipelago.
This commit is contained in:
CookieCat
2024-05-20 03:04:06 -04:00
committed by GitHub
parent c792ae76ca
commit fe7bc8784d
19 changed files with 5715 additions and 0 deletions

8
AHITClient.py Normal file
View File

@@ -0,0 +1,8 @@
from worlds.ahit.Client import launch
import Utils
import ModuleUpdate
ModuleUpdate.update()
if __name__ == "__main__":
Utils.init_logging("AHITClient", exception_logger="Client")
launch()