mirror of
https://github.com/ldericher/fftcgtool
synced 2025-01-15 15:02:59 +00:00
16 lines
250 B
Python
Executable file
16 lines
250 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
from fftcg.opus import Opus
|
|
from fftcg.imageloader import ImageLoader
|
|
|
|
|
|
def main():
|
|
opus = Opus(14)
|
|
print(opus)
|
|
|
|
queue = ImageLoader.spawn(opus, (429, 600))
|
|
queue.join()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|