summaryrefslogtreecommitdiffhomepage
path: root/templates
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2017-03-19 12:52:13 +0100
committerraysan5 <[email protected]>2017-03-19 12:52:13 +0100
commitca8c56561792a58d9b66fef668cf9d3a0fc4e876 (patch)
tree1624a3ac04a706af6bc198ec0563737c25dd7eca /templates
parent5d1f6616618d52f173a918f6a0378aeae1cb05ad (diff)
downloadraylib-ca8c56561792a58d9b66fef668cf9d3a0fc4e876.tar.gz
raylib-ca8c56561792a58d9b66fef668cf9d3a0fc4e876.zip
Review contact information
Diffstat (limited to 'templates')
-rw-r--r--templates/advance_game/Makefile2
-rw-r--r--templates/advance_game/advance_game.c2
-rw-r--r--templates/advance_game/screens/screen_ending.c2
-rw-r--r--templates/advance_game/screens/screen_gameplay.c2
-rw-r--r--templates/advance_game/screens/screen_logo.c2
-rw-r--r--templates/advance_game/screens/screen_options.c2
-rw-r--r--templates/advance_game/screens/screen_title.c2
-rw-r--r--templates/advance_game/screens/screens.h2
-rw-r--r--templates/android_project/jni/basic_game.c2
-rw-r--r--templates/basic_game/Makefile2
-rw-r--r--templates/basic_test/Makefile2
-rw-r--r--templates/basic_test/basic_test.c2
-rw-r--r--templates/simple_game/Makefile2
-rw-r--r--templates/simple_game/screens.c2
-rw-r--r--templates/simple_game/screens.h2
-rw-r--r--templates/simple_game/simple_game.c2
-rw-r--r--templates/standard_game/Makefile2
-rw-r--r--templates/standard_game/screens/screen_ending.c2
-rw-r--r--templates/standard_game/screens/screen_gameplay.c2
-rw-r--r--templates/standard_game/screens/screen_logo.c2
-rw-r--r--templates/standard_game/screens/screen_options.c2
-rw-r--r--templates/standard_game/screens/screen_title.c2
-rw-r--r--templates/standard_game/screens/screens.h2
-rw-r--r--templates/standard_game/standard_game.c2
24 files changed, 24 insertions, 24 deletions
diff --git a/templates/advance_game/Makefile b/templates/advance_game/Makefile
index b3947205..0be29360 100644
--- a/templates/advance_game/Makefile
+++ b/templates/advance_game/Makefile
@@ -4,7 +4,7 @@
#
# makefile to compile advance game for desktop platforms, Raspberry Pi and HTML5 (emscripten)
#
-# Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+# Copyright (c) 2014 Ramon Santamaria (@raysan5)
#
# This software is provided "as-is", without any express or implied warranty. In no event
# will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/advance_game/advance_game.c b/templates/advance_game/advance_game.c
index 891bbaf1..5e837f87 100644
--- a/templates/advance_game/advance_game.c
+++ b/templates/advance_game/advance_game.c
@@ -8,7 +8,7 @@
* This game has been created using raylib (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/templates/advance_game/screens/screen_ending.c b/templates/advance_game/screens/screen_ending.c
index 3d9f81a1..c776be3e 100644
--- a/templates/advance_game/screens/screen_ending.c
+++ b/templates/advance_game/screens/screen_ending.c
@@ -4,7 +4,7 @@
*
* Ending Screen Functions Definitions (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/advance_game/screens/screen_gameplay.c b/templates/advance_game/screens/screen_gameplay.c
index 307f2ea3..f70ddb09 100644
--- a/templates/advance_game/screens/screen_gameplay.c
+++ b/templates/advance_game/screens/screen_gameplay.c
@@ -4,7 +4,7 @@
*
* Gameplay Screen Functions Definitions (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/advance_game/screens/screen_logo.c b/templates/advance_game/screens/screen_logo.c
index 1cd42830..cb60e516 100644
--- a/templates/advance_game/screens/screen_logo.c
+++ b/templates/advance_game/screens/screen_logo.c
@@ -4,7 +4,7 @@
*
* Logo Screen Functions Definitions (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/advance_game/screens/screen_options.c b/templates/advance_game/screens/screen_options.c
index 87d32264..1f69a3b9 100644
--- a/templates/advance_game/screens/screen_options.c
+++ b/templates/advance_game/screens/screen_options.c
@@ -4,7 +4,7 @@
*
* Options Screen Functions Definitions (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/advance_game/screens/screen_title.c b/templates/advance_game/screens/screen_title.c
index 9c288fb5..8f2cf4af 100644
--- a/templates/advance_game/screens/screen_title.c
+++ b/templates/advance_game/screens/screen_title.c
@@ -4,7 +4,7 @@
*
* Title Screen Functions Definitions (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/advance_game/screens/screens.h b/templates/advance_game/screens/screens.h
index 88537d9b..43c335a6 100644
--- a/templates/advance_game/screens/screens.h
+++ b/templates/advance_game/screens/screens.h
@@ -4,7 +4,7 @@
*
* Screens Functions Declarations (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/android_project/jni/basic_game.c b/templates/android_project/jni/basic_game.c
index c801cbaa..1109f9e8 100644
--- a/templates/android_project/jni/basic_game.c
+++ b/templates/android_project/jni/basic_game.c
@@ -8,7 +8,7 @@
* This game has been created using raylib v1.2 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/templates/basic_game/Makefile b/templates/basic_game/Makefile
index 76337490..b9704b4b 100644
--- a/templates/basic_game/Makefile
+++ b/templates/basic_game/Makefile
@@ -4,7 +4,7 @@
#
# makefile to compile basic game for desktop platforms, Raspberry Pi and HTML5 (emscripten)
#
-# Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+# Copyright (c) 2014 Ramon Santamaria (@raysan5)
#
# This software is provided "as-is", without any express or implied warranty. In no event
# will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/basic_test/Makefile b/templates/basic_test/Makefile
index b6fd44a7..7986f375 100644
--- a/templates/basic_test/Makefile
+++ b/templates/basic_test/Makefile
@@ -4,7 +4,7 @@
#
# makefile to compile basic test for desktop platforms, Raspberry Pi and HTML5 (emscripten)
#
-# Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+# Copyright (c) 2014 Ramon Santamaria (@raysan5)
#
# This software is provided "as-is", without any express or implied warranty. In no event
# will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/basic_test/basic_test.c b/templates/basic_test/basic_test.c
index d4359df5..7e732149 100644
--- a/templates/basic_test/basic_test.c
+++ b/templates/basic_test/basic_test.c
@@ -7,7 +7,7 @@
* This example has been created using raylib v1.2 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/templates/simple_game/Makefile b/templates/simple_game/Makefile
index 3d303082..bea25125 100644
--- a/templates/simple_game/Makefile
+++ b/templates/simple_game/Makefile
@@ -4,7 +4,7 @@
#
# makefile to compile simple game for desktop platforms, Raspberry Pi and HTML5 (emscripten)
#
-# Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+# Copyright (c) 2014 Ramon Santamaria (@raysan5)
#
# This software is provided "as-is", without any express or implied warranty. In no event
# will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/simple_game/screens.c b/templates/simple_game/screens.c
index 742cf6f8..af5a9dfb 100644
--- a/templates/simple_game/screens.c
+++ b/templates/simple_game/screens.c
@@ -4,7 +4,7 @@
*
* Screens Functions Definitions (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/simple_game/screens.h b/templates/simple_game/screens.h
index 7afaebeb..5aa53617 100644
--- a/templates/simple_game/screens.h
+++ b/templates/simple_game/screens.h
@@ -4,7 +4,7 @@
*
* Screens Functions Declarations (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/simple_game/simple_game.c b/templates/simple_game/simple_game.c
index b4d75719..d8de3c28 100644
--- a/templates/simple_game/simple_game.c
+++ b/templates/simple_game/simple_game.c
@@ -8,7 +8,7 @@
* This game has been created using raylib (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
-* raylib - Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* raylib - Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/templates/standard_game/Makefile b/templates/standard_game/Makefile
index c7cb7add..1abdbabc 100644
--- a/templates/standard_game/Makefile
+++ b/templates/standard_game/Makefile
@@ -4,7 +4,7 @@
#
# makefile to compile standard game for desktop platforms, Raspberry Pi and HTML5 (emscripten)
#
-# Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+# Copyright (c) 2014 Ramon Santamaria (@raysan5)
#
# This software is provided "as-is", without any express or implied warranty. In no event
# will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/standard_game/screens/screen_ending.c b/templates/standard_game/screens/screen_ending.c
index e01cd6ad..de16fc8f 100644
--- a/templates/standard_game/screens/screen_ending.c
+++ b/templates/standard_game/screens/screen_ending.c
@@ -4,7 +4,7 @@
*
* Ending Screen Functions Definitions (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/standard_game/screens/screen_gameplay.c b/templates/standard_game/screens/screen_gameplay.c
index 13752d01..e6e45156 100644
--- a/templates/standard_game/screens/screen_gameplay.c
+++ b/templates/standard_game/screens/screen_gameplay.c
@@ -4,7 +4,7 @@
*
* Gameplay Screen Functions Definitions (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/standard_game/screens/screen_logo.c b/templates/standard_game/screens/screen_logo.c
index 41cb5678..2cfa0ca4 100644
--- a/templates/standard_game/screens/screen_logo.c
+++ b/templates/standard_game/screens/screen_logo.c
@@ -4,7 +4,7 @@
*
* Logo Screen Functions Definitions (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/standard_game/screens/screen_options.c b/templates/standard_game/screens/screen_options.c
index bb490672..9ac852d9 100644
--- a/templates/standard_game/screens/screen_options.c
+++ b/templates/standard_game/screens/screen_options.c
@@ -4,7 +4,7 @@
*
* Options Screen Functions Definitions (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/standard_game/screens/screen_title.c b/templates/standard_game/screens/screen_title.c
index 0082fa12..c9700e8b 100644
--- a/templates/standard_game/screens/screen_title.c
+++ b/templates/standard_game/screens/screen_title.c
@@ -4,7 +4,7 @@
*
* Title Screen Functions Definitions (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/standard_game/screens/screens.h b/templates/standard_game/screens/screens.h
index eb4aa8b7..9d558508 100644
--- a/templates/standard_game/screens/screens.h
+++ b/templates/standard_game/screens/screens.h
@@ -4,7 +4,7 @@
*
* Screens Functions Declarations (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
diff --git a/templates/standard_game/standard_game.c b/templates/standard_game/standard_game.c
index e4dafc70..36ca30f9 100644
--- a/templates/standard_game/standard_game.c
+++ b/templates/standard_game/standard_game.c
@@ -8,7 +8,7 @@
* This game has been created using raylib (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
-* raylib - Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* raylib - Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/