ChatDev/WareHouse/SpriteMaker_THUNLP_20230825072337/main.py
2023-09-04 19:24:28 +08:00

12 lines
297 B
Python

'''
Pixel Art Editor
This is the main file for the pixel art editor application. It initializes the GUI and starts the application.
'''
import tkinter as tk
from editor import Editor
def main():
root = tk.Tk()
editor = Editor(root)
root.mainloop()
if __name__ == "__main__":
main()