summaryrefslogtreecommitdiffhomepage
path: root/examples/core
diff options
context:
space:
mode:
authorRay <[email protected]>2024-01-02 20:58:12 +0100
committerRay <[email protected]>2024-01-02 20:58:12 +0100
commit3f1e59a7cfd53f4a4643dc57f4466784a66542bc (patch)
tree3c58f1c749949a8ffc45aa3a72b14766a714d092 /examples/core
parent0a25a3ed7051377d7966cec6c3a3555d8ee0d551 (diff)
downloadraylib-3f1e59a7cfd53f4a4643dc57f4466784a66542bc.tar.gz
raylib-3f1e59a7cfd53f4a4643dc57f4466784a66542bc.zip
Update copyright to 2024
Diffstat (limited to 'examples/core')
-rw-r--r--examples/core/core_2d_camera.c2
-rw-r--r--examples/core/core_2d_camera_mouse_zoom.c2
-rw-r--r--examples/core/core_2d_camera_platformer.c2
-rw-r--r--examples/core/core_3d_camera_first_person.c2
-rw-r--r--examples/core/core_3d_camera_free.c2
-rw-r--r--examples/core/core_3d_camera_mode.c2
-rw-r--r--examples/core/core_3d_camera_split_screen.c2
-rw-r--r--examples/core/core_3d_picking.c2
-rw-r--r--examples/core/core_basic_screen_manager.c2
-rw-r--r--examples/core/core_basic_window.c2
-rw-r--r--examples/core/core_basic_window_web.c2
-rw-r--r--examples/core/core_custom_frame_control.c2
-rw-r--r--examples/core/core_custom_logging.c2
-rw-r--r--examples/core/core_drop_files.c2
-rw-r--r--examples/core/core_input_gamepad.c2
-rw-r--r--examples/core/core_input_gamepad_info.c2
-rw-r--r--examples/core/core_input_gestures.c2
-rw-r--r--examples/core/core_input_keys.c2
-rw-r--r--examples/core/core_input_mouse.c2
-rw-r--r--examples/core/core_input_mouse_wheel.c2
-rw-r--r--examples/core/core_input_multitouch.c2
-rw-r--r--examples/core/core_loading_thread.c2
-rw-r--r--examples/core/core_random_values.c2
-rw-r--r--examples/core/core_scissor_test.c2
-rw-r--r--examples/core/core_smooth_pixelperfect.c2
-rw-r--r--examples/core/core_storage_values.c2
-rw-r--r--examples/core/core_vr_simulator.c2
-rw-r--r--examples/core/core_window_flags.c2
-rw-r--r--examples/core/core_window_letterbox.c2
-rw-r--r--examples/core/core_window_should_close.c2
-rw-r--r--examples/core/core_world_screen.c2
31 files changed, 31 insertions, 31 deletions
diff --git a/examples/core/core_2d_camera.c b/examples/core/core_2d_camera.c
index 759c099a..99b61d4e 100644
--- a/examples/core/core_2d_camera.c
+++ b/examples/core/core_2d_camera.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2016-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2016-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_2d_camera_mouse_zoom.c b/examples/core/core_2d_camera_mouse_zoom.c
index 2e94d37a..abc6a6d1 100644
--- a/examples/core/core_2d_camera_mouse_zoom.c
+++ b/examples/core/core_2d_camera_mouse_zoom.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2022-2023 Jeffery Myers (@JeffM2501)
+* Copyright (c) 2022-2024 Jeffery Myers (@JeffM2501)
*
********************************************************************************************/
diff --git a/examples/core/core_2d_camera_platformer.c b/examples/core/core_2d_camera_platformer.c
index 72b1ee1e..6c574387 100644
--- a/examples/core/core_2d_camera_platformer.c
+++ b/examples/core/core_2d_camera_platformer.c
@@ -9,7 +9,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2019-2023 arvyy (@arvyy)
+* Copyright (c) 2019-2024 arvyy (@arvyy)
*
********************************************************************************************/
diff --git a/examples/core/core_3d_camera_first_person.c b/examples/core/core_3d_camera_first_person.c
index 6a2a115a..35b18ace 100644
--- a/examples/core/core_3d_camera_first_person.c
+++ b/examples/core/core_3d_camera_first_person.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2015-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2015-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_3d_camera_free.c b/examples/core/core_3d_camera_free.c
index 3c30a426..9899dbdb 100644
--- a/examples/core/core_3d_camera_free.c
+++ b/examples/core/core_3d_camera_free.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2015-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2015-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_3d_camera_mode.c b/examples/core/core_3d_camera_mode.c
index cb83a4a2..0600fd33 100644
--- a/examples/core/core_3d_camera_mode.c
+++ b/examples/core/core_3d_camera_mode.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2014-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2014-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_3d_camera_split_screen.c b/examples/core/core_3d_camera_split_screen.c
index d625e1c0..5294e894 100644
--- a/examples/core/core_3d_camera_split_screen.c
+++ b/examples/core/core_3d_camera_split_screen.c
@@ -9,7 +9,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2021-2023 Jeffery Myers (@JeffM2501)
+* Copyright (c) 2021-2024 Jeffery Myers (@JeffM2501)
*
********************************************************************************************/
diff --git a/examples/core/core_3d_picking.c b/examples/core/core_3d_picking.c
index c7bf9466..fa6fcaec 100644
--- a/examples/core/core_3d_picking.c
+++ b/examples/core/core_3d_picking.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2015-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2015-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_basic_screen_manager.c b/examples/core/core_basic_screen_manager.c
index a8057298..728ef125 100644
--- a/examples/core/core_basic_screen_manager.c
+++ b/examples/core/core_basic_screen_manager.c
@@ -9,7 +9,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2021-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2021-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_basic_window.c b/examples/core/core_basic_window.c
index 5bfd186d..81bea16b 100644
--- a/examples/core/core_basic_window.c
+++ b/examples/core/core_basic_window.c
@@ -17,7 +17,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2013-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2013-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_basic_window_web.c b/examples/core/core_basic_window_web.c
index e0e1f9fb..8726908c 100644
--- a/examples/core/core_basic_window_web.c
+++ b/examples/core/core_basic_window_web.c
@@ -11,7 +11,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2015-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2015-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_custom_frame_control.c b/examples/core/core_custom_frame_control.c
index 9bfd25d3..6e494d86 100644
--- a/examples/core/core_custom_frame_control.c
+++ b/examples/core/core_custom_frame_control.c
@@ -22,7 +22,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2021-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2021-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_custom_logging.c b/examples/core/core_custom_logging.c
index b4da2d57..f886267e 100644
--- a/examples/core/core_custom_logging.c
+++ b/examples/core/core_custom_logging.c
@@ -9,7 +9,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2018-2023 Pablo Marcos Oltra (@pamarcos) and Ramon Santamaria (@raysan5)
+* Copyright (c) 2018-2024 Pablo Marcos Oltra (@pamarcos) and Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_drop_files.c b/examples/core/core_drop_files.c
index d4ddd9ed..2e51d872 100644
--- a/examples/core/core_drop_files.c
+++ b/examples/core/core_drop_files.c
@@ -9,7 +9,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2015-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2015-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_input_gamepad.c b/examples/core/core_input_gamepad.c
index c28ff1f9..843d5d90 100644
--- a/examples/core/core_input_gamepad.c
+++ b/examples/core/core_input_gamepad.c
@@ -13,7 +13,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2013-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2013-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_input_gamepad_info.c b/examples/core/core_input_gamepad_info.c
index 9aebb815..66fedda9 100644
--- a/examples/core/core_input_gamepad_info.c
+++ b/examples/core/core_input_gamepad_info.c
@@ -10,7 +10,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2013-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2013-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_input_gestures.c b/examples/core/core_input_gestures.c
index 312e78ff..27ecef56 100644
--- a/examples/core/core_input_gestures.c
+++ b/examples/core/core_input_gestures.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2016-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2016-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_input_keys.c b/examples/core/core_input_keys.c
index ccff2400..8e74b93b 100644
--- a/examples/core/core_input_keys.c
+++ b/examples/core/core_input_keys.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2014-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2014-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_input_mouse.c b/examples/core/core_input_mouse.c
index 874e16c3..e6a3e15d 100644
--- a/examples/core/core_input_mouse.c
+++ b/examples/core/core_input_mouse.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2014-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2014-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_input_mouse_wheel.c b/examples/core/core_input_mouse_wheel.c
index 826bad3a..54f33545 100644
--- a/examples/core/core_input_mouse_wheel.c
+++ b/examples/core/core_input_mouse_wheel.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2014-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2014-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_input_multitouch.c b/examples/core/core_input_multitouch.c
index 37817e5a..73b36357 100644
--- a/examples/core/core_input_multitouch.c
+++ b/examples/core/core_input_multitouch.c
@@ -9,7 +9,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2019-2023 Berni (@Berni8k) and Ramon Santamaria (@raysan5)
+* Copyright (c) 2019-2024 Berni (@Berni8k) and Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_loading_thread.c b/examples/core/core_loading_thread.c
index 8451ff03..8e09c99d 100644
--- a/examples/core/core_loading_thread.c
+++ b/examples/core/core_loading_thread.c
@@ -9,7 +9,7 @@
*
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
*
-* Copyright (c) 2014-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2014-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_random_values.c b/examples/core/core_random_values.c
index bec1de27..46516ea1 100644
--- a/examples/core/core_random_values.c
+++ b/examples/core/core_random_values.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2014-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2014-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_scissor_test.c b/examples/core/core_scissor_test.c
index c2b853c0..62ae080c 100644
--- a/examples/core/core_scissor_test.c
+++ b/examples/core/core_scissor_test.c
@@ -9,7 +9,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2019-2023 Chris Dill (@MysteriousSpace)
+* Copyright (c) 2019-2024 Chris Dill (@MysteriousSpace)
*
********************************************************************************************/
diff --git a/examples/core/core_smooth_pixelperfect.c b/examples/core/core_smooth_pixelperfect.c
index 3d5ed94f..99180598 100644
--- a/examples/core/core_smooth_pixelperfect.c
+++ b/examples/core/core_smooth_pixelperfect.c
@@ -10,7 +10,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2021-2023 Giancamillo Alessandroni (@NotManyIdeasDev) and Ramon Santamaria (@raysan5)
+* Copyright (c) 2021-2024 Giancamillo Alessandroni (@NotManyIdeasDev) and Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_storage_values.c b/examples/core/core_storage_values.c
index c7fd7d9b..39edcb5e 100644
--- a/examples/core/core_storage_values.c
+++ b/examples/core/core_storage_values.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2015-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2015-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_vr_simulator.c b/examples/core/core_vr_simulator.c
index 9acea197..c98fce93 100644
--- a/examples/core/core_vr_simulator.c
+++ b/examples/core/core_vr_simulator.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2017-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2017-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_window_flags.c b/examples/core/core_window_flags.c
index b1cbb1b6..c9f85892 100644
--- a/examples/core/core_window_flags.c
+++ b/examples/core/core_window_flags.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2020-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2020-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_window_letterbox.c b/examples/core/core_window_letterbox.c
index 751fb14a..ded78243 100644
--- a/examples/core/core_window_letterbox.c
+++ b/examples/core/core_window_letterbox.c
@@ -9,7 +9,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2019-2023 Anata (@anatagawa) and Ramon Santamaria (@raysan5)
+* Copyright (c) 2019-2024 Anata (@anatagawa) and Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_window_should_close.c b/examples/core/core_window_should_close.c
index f0392b01..e28ef7db 100644
--- a/examples/core/core_window_should_close.c
+++ b/examples/core/core_window_should_close.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2013-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2013-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/core/core_world_screen.c b/examples/core/core_world_screen.c
index 6c811a50..82fa3128 100644
--- a/examples/core/core_world_screen.c
+++ b/examples/core/core_world_screen.c
@@ -7,7 +7,7 @@
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
* BSD-like license that allows static linking with closed source software
*
-* Copyright (c) 2015-2023 Ramon Santamaria (@raysan5)
+* Copyright (c) 2015-2024 Ramon Santamaria (@raysan5)
*
********************************************************************************************/