POI Types Editor tool has been added. Updates and fixes. Project structure has been changed. README updated.

This commit is contained in:
LudvvigB
2025-04-11 23:09:34 +03:00
parent b42df18f68
commit c23cb42a13
7 changed files with 532 additions and 204 deletions

8
main.py Normal file
View File

@@ -0,0 +1,8 @@
# main.py
import tkinter as tk
import src.gpx2cnx as G2C
# Run App
root = tk.Tk()
G2C.GPX2CNX(root)
root.mainloop()