From 0ea49051d01c0449a678296b801266752d3b399e Mon Sep 17 00:00:00 2001 From: nekotoro Date: Fri, 14 Nov 2025 14:15:52 +0100 Subject: [PATCH] add Feathers UI bootstrap --- .DS_Store | Bin 0 -> 6148 bytes assets/icons/icon.svg | 9 +++++++++ project.xml | 17 +++++++++++++++++ src/LPTCManager2026.hx | 12 ++++++++++++ 4 files changed, 38 insertions(+) create mode 100644 .DS_Store create mode 100644 assets/icons/icon.svg create mode 100644 project.xml create mode 100644 src/LPTCManager2026.hx diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..7544922ff101f92c1baeb8b6c84fd59f80d598a6 GIT binary patch literal 6148 zcmeHKOHRWu5S<|vio~W%mc9Y%4NM6q=mkns1dB$gTG(gPZSTSj*so{xxzL{y>)vJ5gJ>a6K3Ig62XjVD?!9!8V8ZI+pZexpkE zeol9^#&b`-{TElK_NJ|>*`l36Urx8LH!tCi;c1nd~M1IK*epfHUyN7~nxQsm6GzR9kzmC$%=9P0>Weuaf}; oV=cu%Eyb9~IdZ8+vj-W&9uszkvWn<69Oyp+N{DyPzz;C+2{2|zsQ>@~ literal 0 HcmV?d00001 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