24 lines
831 B
C++
24 lines
831 B
C++
#pragma once
|
|
#include "game/game.hpp"
|
|
#include "types.hpp"
|
|
#include "script_value.hpp"
|
|
|
|
namespace ui_scripting
|
|
{
|
|
void push_value(const script_value& value);
|
|
void push_value(const game::hks::HksObject& value);
|
|
|
|
script_value get_return_value(int offset);
|
|
arguments get_return_values();
|
|
arguments get_return_values(game::hks::HksObject* base);
|
|
|
|
bool notify(const std::string& name, const event_arguments& arguments);
|
|
|
|
arguments call_script_function(const function& function, const arguments& arguments);
|
|
|
|
script_value get_field(const userdata& self, const script_value& key);
|
|
script_value get_field(const table& self, const script_value& key);
|
|
void set_field(const userdata& self, const script_value& key, const script_value& value);
|
|
void set_field(const table& self, const script_value& key, const script_value& value);
|
|
}
|