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