17 lines
224 B
Python
17 lines
224 B
Python
from tkinter import *
|
|
from src.window.app import App
|
|
|
|
|
|
def main():
|
|
root = Tk()
|
|
root.title("Drawing Training!")
|
|
root.geometry("300x600")
|
|
|
|
App(root)
|
|
|
|
root.mainloop()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|