LycacraftMaps/main.py

11 lines
128 B
Python

from src.editor import Editor
def main():
editor = Editor()
editor.mainloop()
if __name__ == '__main__':
main()