mirror of
https://github.com/fedddddd/iw5-gsc-utils.git
synced 2025-07-03 01:31:49 +00:00
31 lines
535 B
C++
31 lines
535 B
C++
#include <stdinc.hpp>
|
|
#include "function.hpp"
|
|
#include "execution.hpp"
|
|
|
|
namespace scripting
|
|
{
|
|
function::function(const char* pos)
|
|
: pos_(pos)
|
|
{
|
|
}
|
|
|
|
script_value function::get_raw() const
|
|
{
|
|
game::VariableValue value;
|
|
value.type = game::SCRIPT_FUNCTION;
|
|
value.u.codePosValue = this->pos_;
|
|
|
|
return value;
|
|
}
|
|
|
|
const char* function::get_pos() const
|
|
{
|
|
return this->pos_;
|
|
}
|
|
|
|
script_value function::call(entity self, std::vector<script_value> arguments) const
|
|
{
|
|
return exec_ent_thread(self, this->pos_, arguments);
|
|
}
|
|
}
|