1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-05-10 19:13:42 +00:00
oot/tools/assets/extract/__main__.py
2025-02-18 10:07:20 +01:00

13 lines
317 B
Python

# SPDX-FileCopyrightText: © 2025 ZeldaRET
# SPDX-License-Identifier: CC0-1.0
from . import extract_xml_z64
if __name__ == "__main__":
profile = False
if profile:
import cProfile
cProfile.run("extract_xml_z64.main()", "cprofile_extract_assets.txt")
else:
extract_xml_z64.main()