Files
dusk/tools/assetstool/assets.py
2025-08-24 15:18:01 -05:00

14 lines
323 B
Python

import sys, os
from args import inputAssets
from processasset import processAsset
# Setup headers directory.
# setOutputDir(args.output)
# outputHeaders = []
# # Create output directory if it doesn't exist
# if not os.path.exists(args.output):
# os.makedirs(args.output)
for asset in inputAssets:
processAsset(asset)