LycacraftMaps/main.py

11 lines
128 B
Python
Raw Permalink Normal View History

2024-06-28 12:20:37 +00:00
from src.editor import Editor
def main():
editor = Editor()
editor.mainloop()
if __name__ == '__main__':
main()