AeThex AI module architecture and cloud services integration
This commit is contained in:
parent
71f7b991a5
commit
ce88320459
3592 changed files with 13793 additions and 12045 deletions
BIN
engine/build_log.txt
Normal file
BIN
engine/build_log.txt
Normal file
Binary file not shown.
|
|
@ -2,10 +2,10 @@
|
||||||
/* engine.cpp */
|
/* engine.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* engine.h */
|
/* engine.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* project_settings.cpp */
|
/* project_settings.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
@ -644,7 +644,7 @@ void ProjectSettings::_convert_to_last_version(int p_from_version) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This method is responsible for loading a project.godot file and/or data file
|
* This method is responsible for loading a project.aethex file and/or data file
|
||||||
* using the following merit order:
|
* using the following merit order:
|
||||||
* - If using NetworkClient, try to lookup project file or fail.
|
* - If using NetworkClient, try to lookup project file or fail.
|
||||||
* - If --main-pack was passed by the user (`p_main_pack`), load it or fail.
|
* - If --main-pack was passed by the user (`p_main_pack`), load it or fail.
|
||||||
|
|
@ -685,7 +685,7 @@ Error ProjectSettings::_setup(const String &p_path, const String &p_main_pack, b
|
||||||
bool ok = _load_resource_pack(p_main_pack, false, 0, true);
|
bool ok = _load_resource_pack(p_main_pack, false, 0, true);
|
||||||
ERR_FAIL_COND_V_MSG(!ok, ERR_CANT_OPEN, vformat("Cannot open resource pack '%s'.", p_main_pack));
|
ERR_FAIL_COND_V_MSG(!ok, ERR_CANT_OPEN, vformat("Cannot open resource pack '%s'.", p_main_pack));
|
||||||
|
|
||||||
Error err = _load_settings_text_or_binary("res://project.godot", "res://project.binary");
|
Error err = _load_settings_text_or_binary("res://project.aethex", "res://project.binary");
|
||||||
#ifdef OVERRIDE_ENABLED
|
#ifdef OVERRIDE_ENABLED
|
||||||
if (err == OK && !p_ignore_override) {
|
if (err == OK && !p_ignore_override) {
|
||||||
// Load override from location of the main pack
|
// Load override from location of the main pack
|
||||||
|
|
@ -740,7 +740,7 @@ Error ProjectSettings::_setup(const String &p_path, const String &p_main_pack, b
|
||||||
|
|
||||||
// If we opened our package, try and load our project.
|
// If we opened our package, try and load our project.
|
||||||
if (found) {
|
if (found) {
|
||||||
Error err = _load_settings_text_or_binary("res://project.godot", "res://project.binary");
|
Error err = _load_settings_text_or_binary("res://project.aethex", "res://project.binary");
|
||||||
#ifdef OVERRIDE_ENABLED
|
#ifdef OVERRIDE_ENABLED
|
||||||
if (err == OK && !p_ignore_override) {
|
if (err == OK && !p_ignore_override) {
|
||||||
// Load overrides from the PCK and the executable location.
|
// Load overrides from the PCK and the executable location.
|
||||||
|
|
@ -765,7 +765,7 @@ Error ProjectSettings::_setup(const String &p_path, const String &p_main_pack, b
|
||||||
// (Only Android -when reading from PCK-.)
|
// (Only Android -when reading from PCK-.)
|
||||||
|
|
||||||
if (!OS::get_singleton()->get_resource_dir().is_empty()) {
|
if (!OS::get_singleton()->get_resource_dir().is_empty()) {
|
||||||
Error err = _load_settings_text_or_binary("res://project.godot", "res://project.binary");
|
Error err = _load_settings_text_or_binary("res://project.aethex", "res://project.binary");
|
||||||
#ifdef OVERRIDE_ENABLED
|
#ifdef OVERRIDE_ENABLED
|
||||||
if (err == OK && !p_ignore_override) {
|
if (err == OK && !p_ignore_override) {
|
||||||
// Optional, we don't mind if it fails.
|
// Optional, we don't mind if it fails.
|
||||||
|
|
@ -791,7 +791,7 @@ Error ProjectSettings::_setup(const String &p_path, const String &p_main_pack, b
|
||||||
|
|
||||||
Error err;
|
Error err;
|
||||||
|
|
||||||
err = _load_settings_text_or_binary(resource_path.path_join("project.godot"), resource_path.path_join("project.binary"));
|
err = _load_settings_text_or_binary(resource_path.path_join("project.aethex"), resource_path.path_join("project.binary"));
|
||||||
if (err == OK && !p_ignore_override) {
|
if (err == OK && !p_ignore_override) {
|
||||||
// Optional, we don't mind if it fails.
|
// Optional, we don't mind if it fails.
|
||||||
#ifdef OVERRIDE_ENABLED
|
#ifdef OVERRIDE_ENABLED
|
||||||
|
|
@ -820,7 +820,7 @@ Error ProjectSettings::_setup(const String &p_path, const String &p_main_pack, b
|
||||||
// Set the resource path early so things can be resolved when loading.
|
// Set the resource path early so things can be resolved when loading.
|
||||||
resource_path = current_dir;
|
resource_path = current_dir;
|
||||||
resource_path = resource_path.replace_char('\\', '/'); // Windows path to Unix path just in case.
|
resource_path = resource_path.replace_char('\\', '/'); // Windows path to Unix path just in case.
|
||||||
err = _load_settings_text_or_binary(current_dir.path_join("project.godot"), current_dir.path_join("project.binary"));
|
err = _load_settings_text_or_binary(current_dir.path_join("project.aethex"), current_dir.path_join("project.binary"));
|
||||||
if (err == OK) {
|
if (err == OK) {
|
||||||
#ifdef OVERRIDE_ENABLED
|
#ifdef OVERRIDE_ENABLED
|
||||||
if (!p_ignore_override) {
|
if (!p_ignore_override) {
|
||||||
|
|
@ -964,10 +964,10 @@ Error ProjectSettings::_load_settings_text(const String &p_path) {
|
||||||
|
|
||||||
err = VariantParser::parse_tag_assign_eof(&stream, lines, error_text, next_tag, assign, value, nullptr, true);
|
err = VariantParser::parse_tag_assign_eof(&stream, lines, error_text, next_tag, assign, value, nullptr, true);
|
||||||
if (err == ERR_FILE_EOF) {
|
if (err == ERR_FILE_EOF) {
|
||||||
// If we're loading a project.godot from source code, we can operate some
|
// If we're loading a project.aethex from source code, we can operate some
|
||||||
// ProjectSettings conversions if need be.
|
// ProjectSettings conversions if need be.
|
||||||
_convert_to_last_version(config_version);
|
_convert_to_last_version(config_version);
|
||||||
last_save_time = FileAccess::get_modified_time(get_resource_path().path_join("project.godot"));
|
last_save_time = FileAccess::get_modified_time(get_resource_path().path_join("project.aethex"));
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
ERR_FAIL_COND_V_MSG(err != OK, err, vformat("Error parsing '%s' at line %d: %s File might be corrupted.", p_path, lines, error_text));
|
ERR_FAIL_COND_V_MSG(err != OK, err, vformat("Error parsing '%s' at line %d: %s File might be corrupted.", p_path, lines, error_text));
|
||||||
|
|
@ -990,7 +990,7 @@ Error ProjectSettings::_load_settings_text(const String &p_path) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Error ProjectSettings::_load_settings_text_or_binary(const String &p_text_path, const String &p_bin_path) {
|
Error ProjectSettings::_load_settings_text_or_binary(const String &p_text_path, const String &p_bin_path) {
|
||||||
// Attempt first to load the binary project.godot file.
|
// Attempt first to load the binary project.aethex file.
|
||||||
Error err = _load_settings_binary(p_bin_path);
|
Error err = _load_settings_binary(p_bin_path);
|
||||||
if (err == OK) {
|
if (err == OK) {
|
||||||
return OK;
|
return OK;
|
||||||
|
|
@ -999,7 +999,7 @@ Error ProjectSettings::_load_settings_text_or_binary(const String &p_text_path,
|
||||||
ERR_PRINT(vformat("Couldn't load file '%s', error code %d.", p_bin_path, err));
|
ERR_PRINT(vformat("Couldn't load file '%s', error code %d.", p_bin_path, err));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fallback to text-based project.godot file if binary was not found.
|
// Fallback to text-based project.aethex file if binary was not found.
|
||||||
err = _load_settings_text(p_text_path);
|
err = _load_settings_text(p_text_path);
|
||||||
if (err == OK) {
|
if (err == OK) {
|
||||||
#ifndef DISABLE_DEPRECATED
|
#ifndef DISABLE_DEPRECATED
|
||||||
|
|
@ -1061,9 +1061,9 @@ void ProjectSettings::clear(const String &p_name) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Error ProjectSettings::save() {
|
Error ProjectSettings::save() {
|
||||||
Error error = save_custom(get_resource_path().path_join("project.godot"));
|
Error error = save_custom(get_resource_path().path_join("project.aethex"));
|
||||||
if (error == OK) {
|
if (error == OK) {
|
||||||
last_save_time = FileAccess::get_modified_time(get_resource_path().path_join("project.godot"));
|
last_save_time = FileAccess::get_modified_time(get_resource_path().path_join("project.aethex"));
|
||||||
}
|
}
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
@ -1141,7 +1141,7 @@ Error ProjectSettings::_save_settings_text(const String &p_file, const RBMap<Str
|
||||||
Error err;
|
Error err;
|
||||||
Ref<FileAccess> file = FileAccess::open(p_file, FileAccess::WRITE, &err);
|
Ref<FileAccess> file = FileAccess::open(p_file, FileAccess::WRITE, &err);
|
||||||
|
|
||||||
ERR_FAIL_COND_V_MSG(err != OK, err, vformat("Couldn't save project.godot - %s.", p_file));
|
ERR_FAIL_COND_V_MSG(err != OK, err, vformat("Couldn't save project.aethex - %s.", p_file));
|
||||||
|
|
||||||
file->store_line("; Engine configuration file.");
|
file->store_line("; Engine configuration file.");
|
||||||
file->store_line("; It's best edited using the editor UI and not directly,");
|
file->store_line("; It's best edited using the editor UI and not directly,");
|
||||||
|
|
@ -1309,7 +1309,7 @@ Error ProjectSettings::save_custom(const String &p_path, const CustomMap &p_cust
|
||||||
save_features += f;
|
save_features += f;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (p_path.ends_with(".godot") || p_path.ends_with("override.cfg")) {
|
if (p_path.ends_with(".aethex") || p_path.ends_with(".godot") || p_path.ends_with("override.cfg")) {
|
||||||
return _save_settings_text(p_path, save_props, p_custom, save_features);
|
return _save_settings_text(p_path, save_props, p_custom, save_features);
|
||||||
} else if (p_path.ends_with(".binary")) {
|
} else if (p_path.ends_with(".binary")) {
|
||||||
return _save_settings_binary(p_path, save_props, p_custom, save_features);
|
return _save_settings_binary(p_path, save_props, p_custom, save_features);
|
||||||
|
|
@ -1664,7 +1664,7 @@ void ProjectSettings::_add_builtin_input_map() {
|
||||||
|
|
||||||
ProjectSettings::ProjectSettings() {
|
ProjectSettings::ProjectSettings() {
|
||||||
// Initialization of engine variables should be done in the setup() method,
|
// Initialization of engine variables should be done in the setup() method,
|
||||||
// so that the values can be overridden from project.godot or project.binary.
|
// so that the values can be overridden from project.aethex or project.binary.
|
||||||
|
|
||||||
CRASH_COND_MSG(singleton != nullptr, "Instantiating a new ProjectSettings singleton is not supported.");
|
CRASH_COND_MSG(singleton != nullptr, "Instantiating a new ProjectSettings singleton is not supported.");
|
||||||
singleton = this;
|
singleton = this;
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* project_settings.h */
|
/* project_settings.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* core_bind.cpp */
|
/* core_bind.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* core_bind.h */
|
/* core_bind.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* core_constants.cpp */
|
/* core_constants.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* core_constants.h */
|
/* core_constants.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* core_globals.h */
|
/* core_globals.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* core_string_names.h */
|
/* core_string_names.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* aes_context.cpp */
|
/* aes_context.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* aes_context.h */
|
/* aes_context.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* crypto.cpp */
|
/* crypto.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* crypto.h */
|
/* crypto.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* crypto_core.cpp */
|
/* crypto_core.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* crypto_core.h */
|
/* crypto_core.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* hashing_context.cpp */
|
/* hashing_context.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* hashing_context.h */
|
/* hashing_context.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* debugger_marshalls.cpp */
|
/* debugger_marshalls.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* debugger_marshalls.h */
|
/* debugger_marshalls.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* engine_debugger.cpp */
|
/* engine_debugger.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* engine_debugger.h */
|
/* engine_debugger.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* engine_profiler.cpp */
|
/* engine_profiler.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* engine_profiler.h */
|
/* engine_profiler.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* local_debugger.cpp */
|
/* local_debugger.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* local_debugger.h */
|
/* local_debugger.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* remote_debugger.cpp */
|
/* remote_debugger.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* remote_debugger.h */
|
/* remote_debugger.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* remote_debugger_peer.cpp */
|
/* remote_debugger_peer.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* remote_debugger_peer.h */
|
/* remote_debugger_peer.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* script_debugger.cpp */
|
/* script_debugger.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* script_debugger.h */
|
/* script_debugger.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* doc_data.cpp */
|
/* doc_data.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* doc_data.h */
|
/* doc_data.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* error_list.cpp */
|
/* error_list.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* error_list.h */
|
/* error_list.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* error_macros.cpp */
|
/* error_macros.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* error_macros.h */
|
/* error_macros.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* godot_instance.cpp */
|
/* godot_instance.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* aethex_instance.h */
|
/* aethex_instance.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* extension_api_dump.cpp */
|
/* extension_api_dump.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* extension_api_dump.h */
|
/* extension_api_dump.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension.cpp */
|
/* gdextension.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension.h */
|
/* gdextension.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension_function_loader.cpp */
|
/* gdextension_function_loader.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension_function_loader.h */
|
/* gdextension_function_loader.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension_interface.cpp */
|
/* gdextension_interface.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension_interface_header_generator.cpp */
|
/* gdextension_interface_header_generator.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension_interface_header_generator.h */
|
/* gdextension_interface_header_generator.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension_library_loader.cpp */
|
/* gdextension_library_loader.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension_library_loader.h */
|
/* gdextension_library_loader.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension_loader.h */
|
/* gdextension_loader.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension_manager.cpp */
|
/* gdextension_manager.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension_manager.h */
|
/* gdextension_manager.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension_special_compat_hashes.cpp */
|
/* gdextension_special_compat_hashes.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* gdextension_special_compat_hashes.h */
|
/* gdextension_special_compat_hashes.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* libaethex.h */
|
/* libaethex.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* default_controller_mappings.h */
|
/* default_controller_mappings.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* input.cpp */
|
/* input.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* input.h */
|
/* input.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* input_enums.h */
|
/* input_enums.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* input_event.cpp */
|
/* input_event.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* input_event.h */
|
/* input_event.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* input_event_codec.cpp */
|
/* input_event_codec.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* input_event_codec.h */
|
/* input_event_codec.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* input_map.cpp */
|
/* input_map.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* input_map.h */
|
/* input_map.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* shortcut.cpp */
|
/* shortcut.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* shortcut.h */
|
/* shortcut.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* compression.cpp */
|
/* compression.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* compression.h */
|
/* compression.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* config_file.cpp */
|
/* config_file.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* config_file.h */
|
/* config_file.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* delta_encoding.cpp */
|
/* delta_encoding.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* delta_encoding.h */
|
/* delta_encoding.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* dir_access.cpp */
|
/* dir_access.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* dir_access.h */
|
/* dir_access.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* dtls_server.cpp */
|
/* dtls_server.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* dtls_server.h */
|
/* dtls_server.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access.cpp */
|
/* file_access.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access.h */
|
/* file_access.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access_compressed.cpp */
|
/* file_access_compressed.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access_compressed.h */
|
/* file_access_compressed.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access_encrypted.cpp */
|
/* file_access_encrypted.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access_encrypted.h */
|
/* file_access_encrypted.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access_memory.cpp */
|
/* file_access_memory.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access_memory.h */
|
/* file_access_memory.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access_pack.cpp */
|
/* file_access_pack.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access_pack.h */
|
/* file_access_pack.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access_patched.cpp */
|
/* file_access_patched.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access_patched.h */
|
/* file_access_patched.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access_zip.cpp */
|
/* file_access_zip.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* file_access_zip.h */
|
/* file_access_zip.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* http_client.cpp */
|
/* http_client.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* http_client.h */
|
/* http_client.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* http_client_tcp.cpp */
|
/* http_client_tcp.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* http_client_tcp.h */
|
/* http_client_tcp.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* image.cpp */
|
/* image.cpp */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
/* image.h */
|
/* image.h */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* This file is part of: */
|
/* This file is part of: */
|
||||||
/* GODOT ENGINE */
|
/* AETHEX ENGINE */
|
||||||
/* https://godotengine.org */
|
/* https://aethex.dev */
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
/* Copyright (c) 2014-present AETHEX ENGINE contributors (see AUTHORS.md). */
|
||||||
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
||||||
/* */
|
/* */
|
||||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue