This commit is contained in:
Federico Cecchetto
2022-01-30 02:04:58 +01:00
parent af84932467
commit 03c24765a7
4 changed files with 146 additions and 0 deletions

View File

@ -19,6 +19,7 @@
#include <utils/io.hpp>
#include <utils/http.hpp>
#include <utils/cryptography.hpp>
#include <version.h>
namespace ui_scripting::lua
{
@ -1136,6 +1137,11 @@ namespace ui_scripting::lua
return utils::cryptography::sha1::compute(data, true);
};
game_type["environment"] = [](const game&)
{
return GIT_BRANCH;
};
struct player
{
};