lua console library

This commit is contained in:
MihailRis
2024-05-10 23:35:46 +03:00
parent 9dc3c40b69
commit c2ea0d5326
12 changed files with 156 additions and 34 deletions
+6 -2
View File
@@ -1,12 +1,16 @@
#ifndef LOGIC_SCRIPTING_SCRIPTING_FUNCTIONAL_HPP_
#define LOGIC_SCRIPTING_SCRIPTING_FUNCTIONAL_HPP_
#include <glm/glm.hpp>
#include <string>
#include "../../typedefs.hpp"
#include "../../delegates.hpp"
#include "../../data/dynamic.hpp"
#include <glm/glm.hpp>
#include <string>
namespace scripting {
using common_func = std::function<dynamic::Value(const std::vector<dynamic::Value>&)>;
runnable create_runnable(
const scriptenv& env,
const std::string& src,