summaryrefslogtreecommitdiff
path: root/tools/assets/extract/__main__.py
blob: 62676350b586bffe697fba99fb3fc779c5d152ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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()