about summary refs log tree commit diff
path: root/src/engine/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/client')
-rw-r--r--src/engine/client/client.cpp3
-rw-r--r--src/engine/client/client.h2
-rw-r--r--src/engine/client/graphics.cpp3
-rw-r--r--src/engine/client/graphics.h2
-rw-r--r--src/engine/client/input.cpp3
-rw-r--r--src/engine/client/input.h2
-rw-r--r--src/engine/client/keynames.h2
-rw-r--r--src/engine/client/sound.cpp3
-rw-r--r--src/engine/client/sound.h2
-rw-r--r--src/engine/client/srvbrowse.cpp3
-rw-r--r--src/engine/client/srvbrowse.h2
-rw-r--r--src/engine/client/text.cpp2
12 files changed, 24 insertions, 5 deletions
diff --git a/src/engine/client/client.cpp b/src/engine/client/client.cpp
index bc4cc7e0..9ee79607 100644
--- a/src/engine/client/client.cpp
+++ b/src/engine/client/client.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 
 #include <stdlib.h> // qsort
 #include <stdarg.h>
diff --git a/src/engine/client/client.h b/src/engine/client/client.h
index d9199b94..07b1d08c 100644
--- a/src/engine/client/client.h
+++ b/src/engine/client/client.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_CLIENT_CLIENT_H
 #define ENGINE_CLIENT_CLIENT_H
 
diff --git a/src/engine/client/graphics.cpp b/src/engine/client/graphics.cpp
index 38f31de9..48988800 100644
--- a/src/engine/client/graphics.cpp
+++ b/src/engine/client/graphics.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 
 #include <base/detect.h>
 
diff --git a/src/engine/client/graphics.h b/src/engine/client/graphics.h
index ef6360e8..17e3a83f 100644
--- a/src/engine/client/graphics.h
+++ b/src/engine/client/graphics.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_CLIENT_GRAPHICS_H
 #define ENGINE_CLIENT_GRAPHICS_H
 
diff --git a/src/engine/client/input.cpp b/src/engine/client/input.cpp
index 0edfaf1e..3bb04448 100644
--- a/src/engine/client/input.cpp
+++ b/src/engine/client/input.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include "SDL.h"
 
 #include <base/system.h>
diff --git a/src/engine/client/input.h b/src/engine/client/input.h
index 2f5b00bf..77fa5447 100644
--- a/src/engine/client/input.h
+++ b/src/engine/client/input.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_CLIENT_INPUT_H
 #define ENGINE_CLIENT_INPUT_H
 
diff --git a/src/engine/client/keynames.h b/src/engine/client/keynames.h
index 2f159a5a..7f790abe 100644
--- a/src/engine/client/keynames.h
+++ b/src/engine/client/keynames.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 /* AUTO GENERATED! DO NOT EDIT MANUALLY! */
 
 #ifndef KEYS_INCLUDE
diff --git a/src/engine/client/sound.cpp b/src/engine/client/sound.cpp
index 69fd7462..7396b444 100644
--- a/src/engine/client/sound.cpp
+++ b/src/engine/client/sound.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 #include <engine/shared/config.h>
 
diff --git a/src/engine/client/sound.h b/src/engine/client/sound.h
index 9c94c6ad..ac34c2ac 100644
--- a/src/engine/client/sound.h
+++ b/src/engine/client/sound.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_CLIENT_SOUND_H
 #define ENGINE_CLIENT_SOUND_H
 
diff --git a/src/engine/client/srvbrowse.cpp b/src/engine/client/srvbrowse.cpp
index cb91477d..a85638a8 100644
--- a/src/engine/client/srvbrowse.cpp
+++ b/src/engine/client/srvbrowse.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <algorithm> // sort
 
 #include <base/system.h>
diff --git a/src/engine/client/srvbrowse.h b/src/engine/client/srvbrowse.h
index 20e8bd46..0e06fc22 100644
--- a/src/engine/client/srvbrowse.h
+++ b/src/engine/client/srvbrowse.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_CLIENT_SRVBROWSE_H
 #define ENGINE_CLIENT_SRVBROWSE_H
 
diff --git a/src/engine/client/text.cpp b/src/engine/client/text.cpp
index e4707a69..b228443d 100644
--- a/src/engine/client/text.cpp
+++ b/src/engine/client/text.cpp
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 #include <base/math.h>
 #include <engine/graphics.h>