add extratools.h
This commit is contained in:
@@ -279,7 +279,7 @@
|
|||||||
sdl3
|
sdl3
|
||||||
|
|
||||||
curl
|
curl
|
||||||
|
glm
|
||||||
nlohmann_json
|
nlohmann_json
|
||||||
|
|
||||||
gamenetworkingsockets
|
gamenetworkingsockets
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#ifndef OBJECT_H
|
||||||
|
#define OBJECT_H
|
||||||
|
|
||||||
|
#include "pch.hpp"
|
||||||
|
|
||||||
|
namespace Archimedes {
|
||||||
|
|
||||||
|
class Object {
|
||||||
|
|
||||||
|
public:
|
||||||
|
Object() {};
|
||||||
|
~Object() {};
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
#include "Archimedes.h"
|
#include "Archimedes.h"
|
||||||
|
|
||||||
#include <curl/curl.h>
|
#include "utils/extratools.h"
|
||||||
#include <nlohmann/json.hpp>
|
|
||||||
|
|
||||||
class Ollama : public Archimedes::Module {
|
class Ollama : public Archimedes::Module {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user