add extratools.h

This commit is contained in:
2026-02-07 12:43:10 -06:00
parent 98f990cb57
commit e7544e1cc1
3 changed files with 21 additions and 3 deletions

View File

@@ -279,7 +279,7 @@
sdl3
curl
glm
nlohmann_json
gamenetworkingsockets

View File

@@ -0,0 +1,19 @@
#ifndef OBJECT_H
#define OBJECT_H
#include "pch.hpp"
namespace Archimedes {
class Object {
public:
Object() {};
~Object() {};
private:
};
}
#endif

View File

@@ -1,7 +1,6 @@
#include "Archimedes.h"
#include <curl/curl.h>
#include <nlohmann/json.hpp>
#include "utils/extratools.h"
class Ollama : public Archimedes::Module {