1
0
Fork 0
mirror of https://github.com/ldericher/fftcgtool synced 2025-01-15 15:02:59 +00:00
fftcgtool/main.py

17 lines
250 B
Python
Raw Normal View History

2021-08-03 00:22:00 +00:00
#!/usr/bin/env python3
2021-08-04 01:39:19 +00:00
from fftcg.imageloader import ImageLoader
2021-08-04 01:41:14 +00:00
from fftcg.opus import Opus
2021-08-03 21:41:25 +00:00
def main():
opus = Opus(14)
2021-08-02 23:55:12 +00:00
print(opus)
2021-08-04 01:39:19 +00:00
queue = ImageLoader.spawn(opus, (429, 600))
queue.join()
2021-08-02 23:55:12 +00:00
if __name__ == '__main__':
2021-08-03 21:41:25 +00:00
main()