h1-mod/src/client/game/scripting/safe_execution.hpp
2022-03-01 22:14:41 +02:00

11 lines
320 B
C++

#pragma once
#include "functions.hpp"
namespace scripting::safe_execution
{
bool call(script_function function, const game::scr_entref_t& entref);
bool set_entity_field(const game::scr_entref_t& entref, int offset);
bool get_entity_field(const game::scr_entref_t& entref, int offset, game::VariableValue* value);
}