add mysql & http funcs

This commit is contained in:
alice
2026-07-28 23:44:07 +02:00
parent befebc4b6e
commit 0b79c0c114
43 changed files with 3023 additions and 146 deletions
+32
View File
@@ -0,0 +1,32 @@
#pragma once
#include "game/game.hpp"
#include "script_value.hpp"
namespace scripting
{
class object final
{
public:
object();
object(const unsigned int);
object(const object& other);
object(object&& other) noexcept;
~object();
object& operator=(const object& other);
object& operator=(object&& other) noexcept;
unsigned int size() const;
unsigned int get_entity_id() const;
entity get_raw() const;
private:
void add() const;
void release() const;
unsigned int id_;
};
}