summaryrefslogtreecommitdiffstats
path: root/core/object
diff options
context:
space:
mode:
Diffstat (limited to 'core/object')
-rw-r--r--core/object/callable_method_pointer.cpp4
-rw-r--r--core/object/callable_method_pointer.h4
-rw-r--r--core/object/class_db.cpp4
-rw-r--r--core/object/class_db.h4
-rw-r--r--core/object/message_queue.cpp4
-rw-r--r--core/object/message_queue.h4
-rw-r--r--core/object/method_bind.cpp4
-rw-r--r--core/object/method_bind.h4
-rw-r--r--core/object/object.compat.inc4
-rw-r--r--core/object/object.cpp4
-rw-r--r--core/object/object.h4
-rw-r--r--core/object/object_id.h4
-rw-r--r--core/object/ref_counted.cpp4
-rw-r--r--core/object/ref_counted.h4
-rw-r--r--core/object/script_instance.cpp4
-rw-r--r--core/object/script_instance.h4
-rw-r--r--core/object/script_language.cpp4
-rw-r--r--core/object/script_language.h4
-rw-r--r--core/object/script_language_extension.cpp4
-rw-r--r--core/object/script_language_extension.h4
-rw-r--r--core/object/undo_redo.cpp4
-rw-r--r--core/object/undo_redo.h4
-rw-r--r--core/object/worker_thread_pool.cpp4
-rw-r--r--core/object/worker_thread_pool.h4
24 files changed, 48 insertions, 48 deletions
diff --git a/core/object/callable_method_pointer.cpp b/core/object/callable_method_pointer.cpp
index 1852f90a30..234cb804b1 100644
--- a/core/object/callable_method_pointer.cpp
+++ b/core/object/callable_method_pointer.cpp
@@ -2,8 +2,8 @@
/* callable_method_pointer.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) */
diff --git a/core/object/callable_method_pointer.h b/core/object/callable_method_pointer.h
index 5897252e88..ba92904f53 100644
--- a/core/object/callable_method_pointer.h
+++ b/core/object/callable_method_pointer.h
@@ -2,8 +2,8 @@
/* callable_method_pointer.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) */
diff --git a/core/object/class_db.cpp b/core/object/class_db.cpp
index a7e7d6dfc4..dcd41c9fb0 100644
--- a/core/object/class_db.cpp
+++ b/core/object/class_db.cpp
@@ -2,8 +2,8 @@
/* class_db.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) */
diff --git a/core/object/class_db.h b/core/object/class_db.h
index 5bac645406..38eed063fe 100644
--- a/core/object/class_db.h
+++ b/core/object/class_db.h
@@ -2,8 +2,8 @@
/* class_db.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) */
diff --git a/core/object/message_queue.cpp b/core/object/message_queue.cpp
index dc41f38d6d..25296bbd36 100644
--- a/core/object/message_queue.cpp
+++ b/core/object/message_queue.cpp
@@ -2,8 +2,8 @@
/* message_queue.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) */
diff --git a/core/object/message_queue.h b/core/object/message_queue.h
index 49431722ee..ee62919356 100644
--- a/core/object/message_queue.h
+++ b/core/object/message_queue.h
@@ -2,8 +2,8 @@
/* message_queue.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) */
diff --git a/core/object/method_bind.cpp b/core/object/method_bind.cpp
index 86ff6085fa..4cbba21642 100644
--- a/core/object/method_bind.cpp
+++ b/core/object/method_bind.cpp
@@ -2,8 +2,8 @@
/* method_bind.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) */
diff --git a/core/object/method_bind.h b/core/object/method_bind.h
index 10fbe04ee5..f7d7330986 100644
--- a/core/object/method_bind.h
+++ b/core/object/method_bind.h
@@ -2,8 +2,8 @@
/* method_bind.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) */
diff --git a/core/object/object.compat.inc b/core/object/object.compat.inc
index 4751922169..6e1916f956 100644
--- a/core/object/object.compat.inc
+++ b/core/object/object.compat.inc
@@ -2,8 +2,8 @@
/* object.compat.inc */
/**************************************************************************/
/* 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) */
diff --git a/core/object/object.cpp b/core/object/object.cpp
index cddb5ad869..fdbee1e5f8 100644
--- a/core/object/object.cpp
+++ b/core/object/object.cpp
@@ -2,8 +2,8 @@
/* object.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) */
diff --git a/core/object/object.h b/core/object/object.h
index cf299ef231..75829681c9 100644
--- a/core/object/object.h
+++ b/core/object/object.h
@@ -2,8 +2,8 @@
/* object.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) */
diff --git a/core/object/object_id.h b/core/object/object_id.h
index e48fa2e442..b2d09c8438 100644
--- a/core/object/object_id.h
+++ b/core/object/object_id.h
@@ -2,8 +2,8 @@
/* object_id.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) */
diff --git a/core/object/ref_counted.cpp b/core/object/ref_counted.cpp
index 9996f79c28..d98e7ddec7 100644
--- a/core/object/ref_counted.cpp
+++ b/core/object/ref_counted.cpp
@@ -2,8 +2,8 @@
/* ref_counted.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) */
diff --git a/core/object/ref_counted.h b/core/object/ref_counted.h
index deb26f12dd..d9c01c0e58 100644
--- a/core/object/ref_counted.h
+++ b/core/object/ref_counted.h
@@ -2,8 +2,8 @@
/* ref_counted.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) */
diff --git a/core/object/script_instance.cpp b/core/object/script_instance.cpp
index f49e557bc2..10a4c1b2ff 100644
--- a/core/object/script_instance.cpp
+++ b/core/object/script_instance.cpp
@@ -2,8 +2,8 @@
/* script_instance.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) */
diff --git a/core/object/script_instance.h b/core/object/script_instance.h
index f5bfa81cc1..ef039f41e0 100644
--- a/core/object/script_instance.h
+++ b/core/object/script_instance.h
@@ -2,8 +2,8 @@
/* script_instance.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) */
diff --git a/core/object/script_language.cpp b/core/object/script_language.cpp
index 65aa6f7363..faf1f87c9e 100644
--- a/core/object/script_language.cpp
+++ b/core/object/script_language.cpp
@@ -2,8 +2,8 @@
/* script_language.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) */
diff --git a/core/object/script_language.h b/core/object/script_language.h
index ad797a5606..829fcf53bc 100644
--- a/core/object/script_language.h
+++ b/core/object/script_language.h
@@ -2,8 +2,8 @@
/* script_language.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) */
diff --git a/core/object/script_language_extension.cpp b/core/object/script_language_extension.cpp
index 780083aa14..8928f21fb2 100644
--- a/core/object/script_language_extension.cpp
+++ b/core/object/script_language_extension.cpp
@@ -2,8 +2,8 @@
/* script_language_extension.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) */
diff --git a/core/object/script_language_extension.h b/core/object/script_language_extension.h
index 9591678b2e..a1dd449a4a 100644
--- a/core/object/script_language_extension.h
+++ b/core/object/script_language_extension.h
@@ -2,8 +2,8 @@
/* script_language_extension.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) */
diff --git a/core/object/undo_redo.cpp b/core/object/undo_redo.cpp
index 936e5eea14..3a327ccdeb 100644
--- a/core/object/undo_redo.cpp
+++ b/core/object/undo_redo.cpp
@@ -2,8 +2,8 @@
/* undo_redo.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) */
diff --git a/core/object/undo_redo.h b/core/object/undo_redo.h
index bca2c15a96..0fcf991680 100644
--- a/core/object/undo_redo.h
+++ b/core/object/undo_redo.h
@@ -2,8 +2,8 @@
/* undo_redo.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) */
diff --git a/core/object/worker_thread_pool.cpp b/core/object/worker_thread_pool.cpp
index e2a8b7aea4..5131349192 100644
--- a/core/object/worker_thread_pool.cpp
+++ b/core/object/worker_thread_pool.cpp
@@ -2,8 +2,8 @@
/* worker_thread_pool.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) */
diff --git a/core/object/worker_thread_pool.h b/core/object/worker_thread_pool.h
index ef19cfa86d..6e80ab83ff 100644
--- a/core/object/worker_thread_pool.h
+++ b/core/object/worker_thread_pool.h
@@ -2,8 +2,8 @@
/* worker_thread_pool.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) */