11 lines
320 B
C++
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);
|
|
}
|