diff --git a/flake.nix b/flake.nix index c3c751f..affa7a4 100644 --- a/flake.nix +++ b/flake.nix @@ -279,7 +279,7 @@ sdl3 curl - + glm nlohmann_json gamenetworkingsockets diff --git a/include/utils/Objects/Object.h b/include/utils/Objects/Object.h index e69de29..dbd0cce 100644 --- a/include/utils/Objects/Object.h +++ b/include/utils/Objects/Object.h @@ -0,0 +1,19 @@ +#ifndef OBJECT_H +#define OBJECT_H + +#include "pch.hpp" + +namespace Archimedes { + + class Object { + + public: + Object() {}; + ~Object() {}; + + private: + + }; +} + +#endif diff --git a/modules/Archimedes-Modules/Ollama/Ollama.h b/modules/Archimedes-Modules/Ollama/Ollama.h index 19c1ff4..55d1f51 100644 --- a/modules/Archimedes-Modules/Ollama/Ollama.h +++ b/modules/Archimedes-Modules/Ollama/Ollama.h @@ -1,7 +1,6 @@ #include "Archimedes.h" -#include -#include +#include "utils/extratools.h" class Ollama : public Archimedes::Module {