From e57b62647d0dc1cd1902336d94e67d44bc6a1618 Mon Sep 17 00:00:00 2001 From: KeshavAnandCode Date: Sun, 14 Dec 2025 00:14:37 -0600 Subject: [PATCH] submodules strurcturte --- .gitignore | 4 +--- .gitmodules | 3 +++ content.cpp => src/content.cpp | 0 content.hpp => src/content.hpp | 0 main.cpp => src/main.cpp | 0 5 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 .gitmodules rename content.cpp => src/content.cpp (100%) rename content.hpp => src/content.hpp (100%) rename main.cpp => src/main.cpp (100%) diff --git a/.gitignore b/.gitignore index 74a7afb..359bdcf 100644 --- a/.gitignore +++ b/.gitignore @@ -6,11 +6,9 @@ macbuild/ winbuild/ -# External +build/** -ftxui/ - # If you ever add a generic build folder: build/ build-*/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..3f38ec3 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "external/ftxui"] + path = external/ftxui + url = https://github.com/ArthurSonzogni/FTXUI \ No newline at end of file diff --git a/content.cpp b/src/content.cpp similarity index 100% rename from content.cpp rename to src/content.cpp diff --git a/content.hpp b/src/content.hpp similarity index 100% rename from content.hpp rename to src/content.hpp diff --git a/main.cpp b/src/main.cpp similarity index 100% rename from main.cpp rename to src/main.cpp