added basic map rendering

This commit is contained in:
2024-06-28 14:20:37 +02:00
parent 9402a7eeb9
commit c7d84246b4
3 changed files with 186 additions and 0 deletions

10
main.py Normal file
View File

@@ -0,0 +1,10 @@
from src.editor import Editor
def main():
editor = Editor()
editor.mainloop()
if __name__ == '__main__':
main()