From e7544e1cc1c6ebd0dbb76da5d60e245954b8c3a4 Mon Sep 17 00:00:00 2001 From: Nathan Date: Sat, 7 Feb 2026 12:43:10 -0600 Subject: [PATCH] add extratools.h --- flake.nix | 2 +- include/utils/Objects/Object.h | 19 +++++++++++++++++++ modules/Archimedes-Modules/Ollama/Ollama.h | 3 +-- 3 files changed, 21 insertions(+), 3 deletions(-) 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 {