mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-04-27 12:18:15 +00:00
12 lines
297 B
Python
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() |