diff options
Diffstat (limited to 'core/templates')
34 files changed, 138 insertions, 70 deletions
diff --git a/core/templates/a_hash_map.cpp b/core/templates/a_hash_map.cpp index 04a14c261a..89cde98637 100644 --- a/core/templates/a_hash_map.cpp +++ b/core/templates/a_hash_map.cpp @@ -2,9 +2,11 @@ /* a_hash_map.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/a_hash_map.h b/core/templates/a_hash_map.h index 6e3a978d50..e831a65c67 100644 --- a/core/templates/a_hash_map.h +++ b/core/templates/a_hash_map.h @@ -2,9 +2,11 @@ /* a_hash_map.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/bin_sorted_array.h b/core/templates/bin_sorted_array.h index 30c1fefbbd..7d3d2b67cc 100644 --- a/core/templates/bin_sorted_array.h +++ b/core/templates/bin_sorted_array.h @@ -2,9 +2,11 @@ /* bin_sorted_array.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/command_queue_mt.cpp b/core/templates/command_queue_mt.cpp index 5fa767263f..0b1d79b732 100644 --- a/core/templates/command_queue_mt.cpp +++ b/core/templates/command_queue_mt.cpp @@ -2,9 +2,11 @@ /* command_queue_mt.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/command_queue_mt.h b/core/templates/command_queue_mt.h index 8ef5dd3064..5fb74b5149 100644 --- a/core/templates/command_queue_mt.h +++ b/core/templates/command_queue_mt.h @@ -2,9 +2,11 @@ /* command_queue_mt.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/cowdata.h b/core/templates/cowdata.h index 5f260ee870..8ac19d6e17 100644 --- a/core/templates/cowdata.h +++ b/core/templates/cowdata.h @@ -2,9 +2,11 @@ /* cowdata.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/hash_map.cpp b/core/templates/hash_map.cpp index 93664dd2e1..d2e0645565 100644 --- a/core/templates/hash_map.cpp +++ b/core/templates/hash_map.cpp @@ -2,9 +2,11 @@ /* hash_map.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/hash_map.h b/core/templates/hash_map.h index 329952e8d4..4b534d9783 100644 --- a/core/templates/hash_map.h +++ b/core/templates/hash_map.h @@ -2,9 +2,11 @@ /* hash_map.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ @@ -247,7 +249,7 @@ public: _FORCE_INLINE_ uint32_t get_capacity() const { return hash_table_size_primes[capacity_index]; } _FORCE_INLINE_ uint32_t size() const { return num_elements; } - /* Standard Godot Container API */ + /* Standard Redot Container API */ bool is_empty() const { return num_elements == 0; diff --git a/core/templates/hash_set.h b/core/templates/hash_set.h index 295b07e5e7..5caba0a1b1 100644 --- a/core/templates/hash_set.h +++ b/core/templates/hash_set.h @@ -2,9 +2,11 @@ /* hash_set.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ @@ -230,7 +232,7 @@ public: _FORCE_INLINE_ uint32_t get_capacity() const { return hash_table_size_primes[capacity_index]; } _FORCE_INLINE_ uint32_t size() const { return num_elements; } - /* Standard Godot Container API */ + /* Standard Redot Container API */ bool is_empty() const { return num_elements == 0; diff --git a/core/templates/hashfuncs.h b/core/templates/hashfuncs.h index e681835c5a..1f37035afe 100644 --- a/core/templates/hashfuncs.h +++ b/core/templates/hashfuncs.h @@ -2,9 +2,11 @@ /* hashfuncs.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/list.h b/core/templates/list.h index 02afeec74d..619e631cfb 100644 --- a/core/templates/list.h +++ b/core/templates/list.h @@ -2,9 +2,11 @@ /* list.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/local_vector.h b/core/templates/local_vector.h index c281d70d92..8b5354adbc 100644 --- a/core/templates/local_vector.h +++ b/core/templates/local_vector.h @@ -2,9 +2,11 @@ /* local_vector.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/lru.h b/core/templates/lru.h index 7f48c3b2e8..60f1a49293 100644 --- a/core/templates/lru.h +++ b/core/templates/lru.h @@ -2,9 +2,11 @@ /* lru.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/oa_hash_map.h b/core/templates/oa_hash_map.h index 7afb58b7c2..11d827019d 100644 --- a/core/templates/oa_hash_map.h +++ b/core/templates/oa_hash_map.h @@ -2,9 +2,11 @@ /* oa_hash_map.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/paged_allocator.h b/core/templates/paged_allocator.h index 0b70fa02f3..ac11a3d921 100644 --- a/core/templates/paged_allocator.h +++ b/core/templates/paged_allocator.h @@ -2,9 +2,11 @@ /* paged_allocator.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/paged_array.h b/core/templates/paged_array.h index 1aa8fa2485..c6b83641c4 100644 --- a/core/templates/paged_array.h +++ b/core/templates/paged_array.h @@ -2,9 +2,11 @@ /* paged_array.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/pair.h b/core/templates/pair.h index fd774641c2..df9a1ae26e 100644 --- a/core/templates/pair.h +++ b/core/templates/pair.h @@ -2,9 +2,11 @@ /* pair.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/pass_func.h b/core/templates/pass_func.h index 497d3bae5d..7e2a206fda 100644 --- a/core/templates/pass_func.h +++ b/core/templates/pass_func.h @@ -2,9 +2,11 @@ /* pass_func.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/pooled_list.h b/core/templates/pooled_list.h index 0e7048732e..543ba05a23 100644 --- a/core/templates/pooled_list.h +++ b/core/templates/pooled_list.h @@ -2,9 +2,11 @@ /* pooled_list.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/rb_map.h b/core/templates/rb_map.h index ef555e4a16..eb05eeb335 100644 --- a/core/templates/rb_map.h +++ b/core/templates/rb_map.h @@ -2,9 +2,11 @@ /* rb_map.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/rb_set.h b/core/templates/rb_set.h index 1b69f2f0c2..b4312781a9 100644 --- a/core/templates/rb_set.h +++ b/core/templates/rb_set.h @@ -2,9 +2,11 @@ /* rb_set.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/rid.h b/core/templates/rid.h index 3f6a62ff15..f1e022570f 100644 --- a/core/templates/rid.h +++ b/core/templates/rid.h @@ -2,9 +2,11 @@ /* rid.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/rid_owner.cpp b/core/templates/rid_owner.cpp index 459672c1a6..3969583c0c 100644 --- a/core/templates/rid_owner.cpp +++ b/core/templates/rid_owner.cpp @@ -2,9 +2,11 @@ /* rid_owner.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/rid_owner.h b/core/templates/rid_owner.h index 4200159054..70fc942f86 100644 --- a/core/templates/rid_owner.h +++ b/core/templates/rid_owner.h @@ -2,9 +2,11 @@ /* rid_owner.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/ring_buffer.h b/core/templates/ring_buffer.h index f5161cefa4..7b65930c31 100644 --- a/core/templates/ring_buffer.h +++ b/core/templates/ring_buffer.h @@ -2,9 +2,11 @@ /* ring_buffer.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/safe_list.h b/core/templates/safe_list.h index 60ccdd9423..5d5ec176d2 100644 --- a/core/templates/safe_list.h +++ b/core/templates/safe_list.h @@ -2,9 +2,11 @@ /* safe_list.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/safe_refcount.h b/core/templates/safe_refcount.h index 16b605eaff..01ca1681ce 100644 --- a/core/templates/safe_refcount.h +++ b/core/templates/safe_refcount.h @@ -2,9 +2,11 @@ /* safe_refcount.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/search_array.h b/core/templates/search_array.h index 835bcd63a6..b19fb2d1d3 100644 --- a/core/templates/search_array.h +++ b/core/templates/search_array.h @@ -2,9 +2,11 @@ /* search_array.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/self_list.h b/core/templates/self_list.h index a04972594e..8026171eca 100644 --- a/core/templates/self_list.h +++ b/core/templates/self_list.h @@ -2,9 +2,11 @@ /* self_list.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/simple_type.h b/core/templates/simple_type.h index 197115ddb9..006eb8ea8b 100644 --- a/core/templates/simple_type.h +++ b/core/templates/simple_type.h @@ -2,9 +2,11 @@ /* simple_type.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/sort_array.h b/core/templates/sort_array.h index 5bf5b2819d..adfcb0cfaf 100644 --- a/core/templates/sort_array.h +++ b/core/templates/sort_array.h @@ -2,9 +2,11 @@ /* sort_array.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/vector.h b/core/templates/vector.h index 52c10eea68..84b9b41c84 100644 --- a/core/templates/vector.h +++ b/core/templates/vector.h @@ -2,9 +2,11 @@ /* vector.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/vmap.h b/core/templates/vmap.h index 2ad074942b..82fc716cab 100644 --- a/core/templates/vmap.h +++ b/core/templates/vmap.h @@ -2,9 +2,11 @@ /* vmap.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/templates/vset.h b/core/templates/vset.h index 614d0e1e5f..75f58ddd1b 100644 --- a/core/templates/vset.h +++ b/core/templates/vset.h @@ -2,9 +2,11 @@ /* vset.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ |