diff --git a/.gitmodules b/.gitmodules index 5ca9bec2..9f5a8729 100644 --- a/.gitmodules +++ b/.gitmodules @@ -13,3 +13,6 @@ [submodule "assets/asm/alttp-hacker-workspace"] path = assets/asm/alttp-hacker-workspace url = https://github.com/scawful/alttp-hacker-workspace.git +[submodule "src/lib/abseil-cpp"] + path = src/lib/abseil-cpp + url = https://github.com/abseil/abseil-cpp.git diff --git a/src/lib/abseil-cpp b/src/lib/abseil-cpp new file mode 160000 index 00000000..701185db --- /dev/null +++ b/src/lib/abseil-cpp @@ -0,0 +1 @@ +Subproject commit 701185dbce17a2f49334027ca3cb5788a5d06c6d diff --git a/src/yaze.cc b/src/yaze.cc index 75aca260..d936b830 100644 --- a/src/yaze.cc +++ b/src/yaze.cc @@ -1,4 +1,4 @@ -#include "yaze.h" +#include "app/core/controller.h" int main(int argc, char** argv) { yaze::app::core::Controller controller; diff --git a/src/yaze.h b/src/yaze.h deleted file mode 100644 index 3a1d6c16..00000000 --- a/src/yaze.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef YAZE_YAZE_H -#define YAZE_YAZE_H - -#include "app/core/controller.h" - -#endif // YAZE_YAZE_H \ No newline at end of file