about summary refs log tree commit diff
path: root/src/engine
diff options
context:
space:
mode:
authorSworddragon <sworddragon2@aol.com>2010-11-20 11:37:14 +0100
committeroy <Tom_Adams@web.de>2010-11-20 21:26:06 +0100
commitfc9211c7774a0d2d755addfb82b7a02047a6568a (patch)
treeea308df1ebcf493283e915818d7013853816052c /src/engine
parentd7b623f5321c13e82b8c5f5b4573be9cf1eaa568 (diff)
downloadzcatch-fc9211c7774a0d2d755addfb82b7a02047a6568a.tar.gz
zcatch-fc9211c7774a0d2d755addfb82b7a02047a6568a.zip
Updated copyrights
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/client.h2
-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
-rw-r--r--src/engine/config.h2
-rw-r--r--src/engine/console.h2
-rw-r--r--src/engine/demo.h2
-rw-r--r--src/engine/editor.h2
-rw-r--r--src/engine/graphics.h2
-rw-r--r--src/engine/input.h2
-rw-r--r--src/engine/kernel.h2
-rw-r--r--src/engine/keys.h2
-rw-r--r--src/engine/map.h2
-rw-r--r--src/engine/masterserver.h2
-rw-r--r--src/engine/message.h2
-rw-r--r--src/engine/server.h2
-rw-r--r--src/engine/server/register.cpp2
-rw-r--r--src/engine/server/register.h2
-rw-r--r--src/engine/server/server.cpp3
-rw-r--r--src/engine/server/server.h2
-rw-r--r--src/engine/serverbrowser.h2
-rw-r--r--src/engine/shared/compression.cpp3
-rw-r--r--src/engine/shared/compression.h2
-rw-r--r--src/engine/shared/config.cpp2
-rw-r--r--src/engine/shared/config.h2
-rw-r--r--src/engine/shared/config_variables.h2
-rw-r--r--src/engine/shared/console.cpp2
-rw-r--r--src/engine/shared/console.h2
-rw-r--r--src/engine/shared/datafile.cpp3
-rw-r--r--src/engine/shared/datafile.h2
-rw-r--r--src/engine/shared/demo.cpp2
-rw-r--r--src/engine/shared/demo.h2
-rw-r--r--src/engine/shared/engine.cpp3
-rw-r--r--src/engine/shared/engine.h2
-rw-r--r--src/engine/shared/huffman.cpp2
-rw-r--r--src/engine/shared/huffman.h2
-rw-r--r--src/engine/shared/jobs.cpp3
-rw-r--r--src/engine/shared/jobs.h2
-rw-r--r--src/engine/shared/kernel.cpp2
-rw-r--r--src/engine/shared/linereader.cpp2
-rw-r--r--src/engine/shared/linereader.h2
-rw-r--r--src/engine/shared/map.cpp3
-rw-r--r--src/engine/shared/masterserver.cpp3
-rw-r--r--src/engine/shared/memheap.cpp3
-rw-r--r--src/engine/shared/memheap.h2
-rw-r--r--src/engine/shared/message.h2
-rw-r--r--src/engine/shared/network.cpp3
-rw-r--r--src/engine/shared/network.h2
-rw-r--r--src/engine/shared/network_client.cpp2
-rw-r--r--src/engine/shared/network_conn.cpp2
-rw-r--r--src/engine/shared/network_server.cpp2
-rw-r--r--src/engine/shared/packer.cpp3
-rw-r--r--src/engine/shared/packer.h2
-rw-r--r--src/engine/shared/protocol.h2
-rw-r--r--src/engine/shared/ringbuffer.cpp2
-rw-r--r--src/engine/shared/ringbuffer.h2
-rw-r--r--src/engine/shared/snapshot.cpp3
-rw-r--r--src/engine/shared/snapshot.h2
-rw-r--r--src/engine/shared/storage.cpp3
-rw-r--r--src/engine/sound.h2
-rw-r--r--src/engine/storage.h2
-rw-r--r--src/engine/textrender.h2
71 files changed, 142 insertions, 17 deletions
diff --git a/src/engine/client.h b/src/engine/client.h
index 11ba7385..454f5d8a 100644
--- a/src/engine/client.h
+++ b/src/engine/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_H
 #define ENGINE_CLIENT_H
 #include "kernel.h"
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>
diff --git a/src/engine/config.h b/src/engine/config.h
index b756d16e..7e00cf65 100644
--- a/src/engine/config.h
+++ b/src/engine/config.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_CONFIG_H
 #define ENGINE_CONFIG_H
 
diff --git a/src/engine/console.h b/src/engine/console.h
index 8a01a312..77de927e 100644
--- a/src/engine/console.h
+++ b/src/engine/console.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_CONSOLE_H
 #define ENGINE_CONSOLE_H
 
diff --git a/src/engine/demo.h b/src/engine/demo.h
index e901de36..dacd96dd 100644
--- a/src/engine/demo.h
+++ b/src/engine/demo.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_DEMO_H
 #define ENGINE_DEMO_H
 
diff --git a/src/engine/editor.h b/src/engine/editor.h
index 32a5cc93..154dc47f 100644
--- a/src/engine/editor.h
+++ b/src/engine/editor.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_EDITOR_H
 #define ENGINE_EDITOR_H
 #include "kernel.h"
diff --git a/src/engine/graphics.h b/src/engine/graphics.h
index cbd7bbff..305319f9 100644
--- a/src/engine/graphics.h
+++ b/src/engine/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_GRAPHICS_H
 #define ENGINE_GRAPHICS_H
 
diff --git a/src/engine/input.h b/src/engine/input.h
index 3caf02e7..7e59669d 100644
--- a/src/engine/input.h
+++ b/src/engine/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_INPUT_H
 #define ENGINE_INPUT_H
 
diff --git a/src/engine/kernel.h b/src/engine/kernel.h
index 6a72690f..288f49ab 100644
--- a/src/engine/kernel.h
+++ b/src/engine/kernel.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_KERNEL_H
 #define ENGINE_KERNEL_H
 
diff --git a/src/engine/keys.h b/src/engine/keys.h
index cb4ca371..00e2c051 100644
--- a/src/engine/keys.h
+++ b/src/engine/keys.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_KEYS_H
 #define ENGINE_KEYS_H
 /* AUTO GENERATED! DO NOT EDIT MANUALLY! */
diff --git a/src/engine/map.h b/src/engine/map.h
index 2c285f26..eaa8432b 100644
--- a/src/engine/map.h
+++ b/src/engine/map.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_MAP_H
 #define ENGINE_MAP_H
 
diff --git a/src/engine/masterserver.h b/src/engine/masterserver.h
index 9d16e85f..d13ea6b4 100644
--- a/src/engine/masterserver.h
+++ b/src/engine/masterserver.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_MASTERSERVER_H
 #define ENGINE_MASTERSERVER_H
 
diff --git a/src/engine/message.h b/src/engine/message.h
index 3ffc488f..4f9cb4c1 100644
--- a/src/engine/message.h
+++ b/src/engine/message.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_MESSAGE_H
 #define ENGINE_MESSAGE_H
 
diff --git a/src/engine/server.h b/src/engine/server.h
index 7e620658..fdfcb7a7 100644
--- a/src/engine/server.h
+++ b/src/engine/server.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_SERVER_H
 #define ENGINE_SERVER_H
 #include "kernel.h"
diff --git a/src/engine/server/register.cpp b/src/engine/server/register.cpp
index 925fef30..dfa3060f 100644
--- a/src/engine/server/register.cpp
+++ b/src/engine/server/register.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 <engine/shared/network.h>
 #include <engine/shared/config.h>
diff --git a/src/engine/server/register.h b/src/engine/server/register.h
index bc98b7d9..86080177 100644
--- a/src/engine/server/register.h
+++ b/src/engine/server/register.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_SERVER_REGISTER_H
 #define ENGINE_SERVER_REGISTER_H
 
diff --git a/src/engine/server/server.cpp b/src/engine/server/server.cpp
index edd0f342..16efe84d 100644
--- a/src/engine/server/server.cpp
+++ b/src/engine/server/server.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>
 
diff --git a/src/engine/server/server.h b/src/engine/server/server.h
index 3a720034..db12006a 100644
--- a/src/engine/server/server.h
+++ b/src/engine/server/server.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_SERVER_SERVER_H
 #define ENGINE_SERVER_SERVER_H
 
diff --git a/src/engine/serverbrowser.h b/src/engine/serverbrowser.h
index d140df25..98a24f7a 100644
--- a/src/engine/serverbrowser.h
+++ b/src/engine/serverbrowser.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_SERVERBROWSER_H
 #define ENGINE_SERVERBROWSER_H
 
diff --git a/src/engine/shared/compression.cpp b/src/engine/shared/compression.cpp
index 63e44699..f14e1cc4 100644
--- a/src/engine/shared/compression.cpp
+++ b/src/engine/shared/compression.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 "compression.h"
diff --git a/src/engine/shared/compression.h b/src/engine/shared/compression.h
index 9bd9e61a..f11ab1be 100644
--- a/src/engine/shared/compression.h
+++ b/src/engine/shared/compression.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_SHARED_COMPRESSION_H
 #define ENGINE_SHARED_COMPRESSION_H
 // variable int packing
diff --git a/src/engine/shared/config.cpp b/src/engine/shared/config.cpp
index 85c6b5ec..f531fa5a 100644
--- a/src/engine/shared/config.cpp
+++ b/src/engine/shared/config.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 <engine/config.h>
 #include <engine/storage.h>
 #include <engine/shared/config.h>
diff --git a/src/engine/shared/config.h b/src/engine/shared/config.h
index ccece08c..46698bd1 100644
--- a/src/engine/shared/config.h
+++ b/src/engine/shared/config.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_SHARED_E_CONFIG_H
 #define ENGINE_SHARED_E_CONFIG_H
 
diff --git a/src/engine/shared/config_variables.h b/src/engine/shared/config_variables.h
index 91d6add2..fdb5a1e2 100644
--- a/src/engine/shared/config_variables.h
+++ b/src/engine/shared/config_variables.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_SHARED_E_CONFIG_VARIABLES_H
 #define ENGINE_SHARED_E_CONFIG_VARIABLES_H
 #undef ENGINE_SHARED_E_CONFIG_VARIABLES_H // this file will be included several times
diff --git a/src/engine/shared/console.cpp b/src/engine/shared/console.cpp
index 324a1e04..2a290cb3 100644
--- a/src/engine/shared/console.cpp
+++ b/src/engine/shared/console.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 <new>
 #include <base/system.h>
 #include <engine/shared/protocol.h>
diff --git a/src/engine/shared/console.h b/src/engine/shared/console.h
index e0435c34..5cacfd90 100644
--- a/src/engine/shared/console.h
+++ b/src/engine/shared/console.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_SHARED_CONSOLE_H
 #define ENGINE_SHARED_CONSOLE_H
 
diff --git a/src/engine/shared/datafile.cpp b/src/engine/shared/datafile.cpp
index 958b4464..ea8902a6 100644
--- a/src/engine/shared/datafile.cpp
+++ b/src/engine/shared/datafile.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/math.h>
 #include <base/system.h>
 #include <engine/storage.h>
diff --git a/src/engine/shared/datafile.h b/src/engine/shared/datafile.h
index 0392e493..f7ee2847 100644
--- a/src/engine/shared/datafile.h
+++ b/src/engine/shared/datafile.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_SHARED_DATAFILE_H
 #define ENGINE_SHARED_DATAFILE_H
 
diff --git a/src/engine/shared/demo.cpp b/src/engine/shared/demo.cpp
index fd71443f..91ac4ba3 100644
--- a/src/engine/shared/demo.cpp
+++ b/src/engine/shared/demo.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 <engine/console.h>
 #include <engine/shared/protocol.h>
diff --git a/src/engine/shared/demo.h b/src/engine/shared/demo.h
index 37e86831..79b0021a 100644
--- a/src/engine/shared/demo.h
+++ b/src/engine/shared/demo.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_SHARED_DEMO_H
 #define ENGINE_SHARED_DEMO_H
 
diff --git a/src/engine/shared/engine.cpp b/src/engine/shared/engine.cpp
index 14fb3391..ea06c57c 100644
--- a/src/engine/shared/engine.cpp
+++ b/src/engine/shared/engine.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>
 
diff --git a/src/engine/shared/engine.h b/src/engine/shared/engine.h
index 22d03d42..63b0cc09 100644
--- a/src/engine/shared/engine.h
+++ b/src/engine/shared/engine.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_SHARED_E_ENGINE_H
 #define ENGINE_SHARED_E_ENGINE_H
 
diff --git a/src/engine/shared/huffman.cpp b/src/engine/shared/huffman.cpp
index 446b6003..feb35b96 100644
--- a/src/engine/shared/huffman.cpp
+++ b/src/engine/shared/huffman.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 "huffman.h"
 
diff --git a/src/engine/shared/huffman.h b/src/engine/shared/huffman.h
index abf6e0e4..0edc36c6 100644
--- a/src/engine/shared/huffman.h
+++ b/src/engine/shared/huffman.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_SHARED_HUFFMAN_H
 #define ENGINE_SHARED_HUFFMAN_H
 
diff --git a/src/engine/shared/jobs.cpp b/src/engine/shared/jobs.cpp
index 83d7290b..4bc09325 100644
--- a/src/engine/shared/jobs.cpp
+++ b/src/engine/shared/jobs.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 "jobs.h"
 
diff --git a/src/engine/shared/jobs.h b/src/engine/shared/jobs.h
index d04815b0..61835186 100644
--- a/src/engine/shared/jobs.h
+++ b/src/engine/shared/jobs.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_SHARED_JOBS_H
 #define ENGINE_SHARED_JOBS_H
 typedef int (*JOBFUNC)(void *pData);
diff --git a/src/engine/shared/kernel.cpp b/src/engine/shared/kernel.cpp
index 059a0e48..f59af8c7 100644
--- a/src/engine/shared/kernel.cpp
+++ b/src/engine/shared/kernel.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 <engine/kernel.h>
 
diff --git a/src/engine/shared/linereader.cpp b/src/engine/shared/linereader.cpp
index 78b574be..3efddb59 100644
--- a/src/engine/shared/linereader.cpp
+++ b/src/engine/shared/linereader.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 "linereader.h"
 
 void CLineReader::Init(IOHANDLE io)
diff --git a/src/engine/shared/linereader.h b/src/engine/shared/linereader.h
index f28d42f6..2745b401 100644
--- a/src/engine/shared/linereader.h
+++ b/src/engine/shared/linereader.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_SHARED_LINEREADER_H
 #define ENGINE_SHARED_LINEREADER_H
 #include <base/system.h>
diff --git a/src/engine/shared/map.cpp b/src/engine/shared/map.cpp
index 827930aa..c0931d54 100644
--- a/src/engine/shared/map.cpp
+++ b/src/engine/shared/map.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/map.h>
 #include <engine/storage.h>
diff --git a/src/engine/shared/masterserver.cpp b/src/engine/shared/masterserver.cpp
index 9ecf3f71..308c3ed4 100644
--- a/src/engine/shared/masterserver.cpp
+++ b/src/engine/shared/masterserver.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 <stdio.h>	// sscanf
 
 #include <base/system.h>
diff --git a/src/engine/shared/memheap.cpp b/src/engine/shared/memheap.cpp
index 6661962b..850577dd 100644
--- a/src/engine/shared/memheap.cpp
+++ b/src/engine/shared/memheap.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 "memheap.h"
 
diff --git a/src/engine/shared/memheap.h b/src/engine/shared/memheap.h
index 706395f2..7228212a 100644
--- a/src/engine/shared/memheap.h
+++ b/src/engine/shared/memheap.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_SHARED_MEMHEAP_H
 #define ENGINE_SHARED_MEMHEAP_H
 class CHeap
diff --git a/src/engine/shared/message.h b/src/engine/shared/message.h
index 4e67a8e1..8d9d860e 100644
--- a/src/engine/shared/message.h
+++ b/src/engine/shared/message.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_SHARED_MESSAGE_H
 #define ENGINE_SHARED_MESSAGE_H
 class CMessage
diff --git a/src/engine/shared/network.cpp b/src/engine/shared/network.cpp
index 0305ffff..8e70d9cf 100644
--- a/src/engine/shared/network.cpp
+++ b/src/engine/shared/network.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>
 
 
diff --git a/src/engine/shared/network.h b/src/engine/shared/network.h
index ef83a191..972d0da8 100644
--- a/src/engine/shared/network.h
+++ b/src/engine/shared/network.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_SHARED_NETWORK_H
 #define ENGINE_SHARED_NETWORK_H
 
diff --git a/src/engine/shared/network_client.cpp b/src/engine/shared/network_client.cpp
index 57ed08a8..d3adfd20 100644
--- a/src/engine/shared/network_client.cpp
+++ b/src/engine/shared/network_client.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 "network.h"
 
diff --git a/src/engine/shared/network_conn.cpp b/src/engine/shared/network_conn.cpp
index aaab7369..dd61de86 100644
--- a/src/engine/shared/network_conn.cpp
+++ b/src/engine/shared/network_conn.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 "config.h"
 #include "network.h"
diff --git a/src/engine/shared/network_server.cpp b/src/engine/shared/network_server.cpp
index 69278775..fabc865b 100644
--- a/src/engine/shared/network_server.cpp
+++ b/src/engine/shared/network_server.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 "network.h"
 
diff --git a/src/engine/shared/packer.cpp b/src/engine/shared/packer.cpp
index 53a74754..5519898d 100644
--- a/src/engine/shared/packer.cpp
+++ b/src/engine/shared/packer.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 "packer.h"
diff --git a/src/engine/shared/packer.h b/src/engine/shared/packer.h
index 02619919..9091370a 100644
--- a/src/engine/shared/packer.h
+++ b/src/engine/shared/packer.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_SHARED_PACKER_H
 #define ENGINE_SHARED_PACKER_H
 
diff --git a/src/engine/shared/protocol.h b/src/engine/shared/protocol.h
index d09cff5a..b714b328 100644
--- a/src/engine/shared/protocol.h
+++ b/src/engine/shared/protocol.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_SHARED_PROTOCOL_H
 #define ENGINE_SHARED_PROTOCOL_H
 
diff --git a/src/engine/shared/ringbuffer.cpp b/src/engine/shared/ringbuffer.cpp
index b84db5a3..172508d7 100644
--- a/src/engine/shared/ringbuffer.cpp
+++ b/src/engine/shared/ringbuffer.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 "ringbuffer.h"
diff --git a/src/engine/shared/ringbuffer.h b/src/engine/shared/ringbuffer.h
index aa02b8d9..9f0c5a1d 100644
--- a/src/engine/shared/ringbuffer.h
+++ b/src/engine/shared/ringbuffer.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_SHARED_RINGBUFFER_H
 #define ENGINE_SHARED_RINGBUFFER_H
 
diff --git a/src/engine/shared/snapshot.cpp b/src/engine/shared/snapshot.cpp
index d566d3a3..ac16a6f8 100644
--- a/src/engine/shared/snapshot.cpp
+++ b/src/engine/shared/snapshot.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 "snapshot.h"
 #include "engine.h"
 #include "compression.h"
diff --git a/src/engine/shared/snapshot.h b/src/engine/shared/snapshot.h
index ec27d004..abd25a72 100644
--- a/src/engine/shared/snapshot.h
+++ b/src/engine/shared/snapshot.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_SHARED_SNAPSHOT_H
 #define ENGINE_SHARED_SNAPSHOT_H
 
diff --git a/src/engine/shared/storage.cpp b/src/engine/shared/storage.cpp
index fd1047e5..ec43847f 100644
--- a/src/engine/shared/storage.cpp
+++ b/src/engine/shared/storage.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 <stdio.h> //remove()
 #include <base/system.h>
 #include <engine/storage.h>
diff --git a/src/engine/sound.h b/src/engine/sound.h
index bbbc4288..d14458e3 100644
--- a/src/engine/sound.h
+++ b/src/engine/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_SOUND_H
 #define ENGINE_SOUND_H
 
diff --git a/src/engine/storage.h b/src/engine/storage.h
index d01a7dd0..5970f103 100644
--- a/src/engine/storage.h
+++ b/src/engine/storage.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_STORAGE_H
 #define ENGINE_STORAGE_H
 
diff --git a/src/engine/textrender.h b/src/engine/textrender.h
index 4fa1ac5b..0674ce90 100644
--- a/src/engine/textrender.h
+++ b/src/engine/textrender.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_TEXTRENDER_H
 #define ENGINE_TEXTRENDER_H
 #include "kernel.h"