diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..7544922
Binary files /dev/null and b/.DS_Store differ
diff --git a/assets/icons/icon.svg b/assets/icons/icon.svg
new file mode 100644
index 0000000..71496d6
--- /dev/null
+++ b/assets/icons/icon.svg
@@ -0,0 +1,9 @@
+
diff --git a/project.xml b/project.xml
new file mode 100644
index 0000000..0cd30de
--- /dev/null
+++ b/project.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/LPTCManager2026.hx b/src/LPTCManager2026.hx
new file mode 100644
index 0000000..7dc36d3
--- /dev/null
+++ b/src/LPTCManager2026.hx
@@ -0,0 +1,12 @@
+import feathers.controls.Application;
+import feathers.controls.Label;
+
+class LPTCManager2026 extends Application {
+ public function new() {
+ super();
+
+ var label = new Label();
+ label.text = "Hello World";
+ addChild(label);
+ }
+}
\ No newline at end of file