mirror of
https://github.com/fedddddd/iw5-gsc-utils.git
synced 2025-07-04 18:21:49 +00:00
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);
|
|
}
|