From efbc6ee855217635d97671a3a2d65bc18908b840 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Sun, 5 Apr 2015 13:12:17 -0400 Subject: [PATCH] Add copyright header to source files to match license for project --- Source/ConsoleCmds.h | 21 +++++++++++++++++++++ Source/Game.cpp | 21 +++++++++++++++++++++ Source/Menu.cpp | 21 +++++++++++++++++++++ Source/Menu.h | 21 +++++++++++++++++++++ Source/Settings.cpp | 21 +++++++++++++++++++++ Source/Settings.h | 21 +++++++++++++++++++++ Source/Stereo.cpp | 20 ++++++++++++++++++++ Source/Stereo.h | 20 ++++++++++++++++++++ Source/Texture.cpp | 21 +++++++++++++++++++++ Source/Texture.h | 21 +++++++++++++++++++++ Source/openal_wrapper.h | 21 +++++++++++++++++++++ 11 files changed, 229 insertions(+) diff --git a/Source/ConsoleCmds.h b/Source/ConsoleCmds.h index c78f9e1..c934143 100644 --- a/Source/ConsoleCmds.h +++ b/Source/ConsoleCmds.h @@ -1,3 +1,24 @@ +/* +Copyright (C) 2003, 2010 - Wolfire Games + +This file is part of Lugaru. + +Lugaru is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + DECLARE_COMMAND(quit) DECLARE_COMMAND(map) DECLARE_COMMAND(save) diff --git a/Source/Game.cpp b/Source/Game.cpp index 3e6b25c..7e671e0 100644 --- a/Source/Game.cpp +++ b/Source/Game.cpp @@ -1,3 +1,24 @@ +/* +Copyright (C) 2003, 2010 - Wolfire Games + +This file is part of Lugaru. + +Lugaru is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + #include "Game.h" #include "openal_wrapper.h" #include "SDL_thread.h" diff --git a/Source/Menu.cpp b/Source/Menu.cpp index c402c8d..8737a78 100644 --- a/Source/Menu.cpp +++ b/Source/Menu.cpp @@ -1,3 +1,24 @@ +/* +Copyright (C) 2003, 2010 - Wolfire Games + +This file is part of Lugaru. + +Lugaru is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + #include #include #include "gamegl.h" diff --git a/Source/Menu.h b/Source/Menu.h index 5abeeb1..184d023 100644 --- a/Source/Menu.h +++ b/Source/Menu.h @@ -1,3 +1,24 @@ +/* +Copyright (C) 2003, 2010 - Wolfire Games + +This file is part of Lugaru. + +Lugaru is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + #ifndef _MENU_H_ #define _MENU_H_ diff --git a/Source/Settings.cpp b/Source/Settings.cpp index 54bba7a..9f73038 100644 --- a/Source/Settings.cpp +++ b/Source/Settings.cpp @@ -1,3 +1,24 @@ +/* +Copyright (C) 2003, 2010 - Wolfire Games + +This file is part of Lugaru. + +Lugaru is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + #include "Settings.h" #include "Game.h" #include "Input.h" diff --git a/Source/Settings.h b/Source/Settings.h index 0777955..0cd2678 100644 --- a/Source/Settings.h +++ b/Source/Settings.h @@ -1,3 +1,24 @@ +/* +Copyright (C) 2003, 2010 - Wolfire Games + +This file is part of Lugaru. + +Lugaru is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + #ifndef SETTINGS_H_ #define SETTINGS_H_ diff --git a/Source/Stereo.cpp b/Source/Stereo.cpp index 69013bf..378942a 100644 --- a/Source/Stereo.cpp +++ b/Source/Stereo.cpp @@ -1,3 +1,23 @@ +/* +Copyright (C) 2003, 2010 - Wolfire Games + +This file is part of Lugaru. + +Lugaru is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ #include "Game.h" #include "Stereo.h" diff --git a/Source/Stereo.h b/Source/Stereo.h index 499f4f9..434e5d7 100644 --- a/Source/Stereo.h +++ b/Source/Stereo.h @@ -1,3 +1,23 @@ +/* +Copyright (C) 2003, 2010 - Wolfire Games + +This file is part of Lugaru. + +Lugaru is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ #ifndef STEREO_H_ #define STEREO_H_ diff --git a/Source/Texture.cpp b/Source/Texture.cpp index fc5c06b..65150bc 100644 --- a/Source/Texture.cpp +++ b/Source/Texture.cpp @@ -1,3 +1,24 @@ +/* +Copyright (C) 2003, 2010 - Wolfire Games + +This file is part of Lugaru. + +Lugaru is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + #include "gamegl.h" #include "Texture.h" #include "TGALoader.h" diff --git a/Source/Texture.h b/Source/Texture.h index 9731dca..a620165 100644 --- a/Source/Texture.h +++ b/Source/Texture.h @@ -1,3 +1,24 @@ +/* +Copyright (C) 2003, 2010 - Wolfire Games + +This file is part of Lugaru. + +Lugaru is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + #ifndef _TEXTURE_H_ #define _TEXTURE_H_ diff --git a/Source/openal_wrapper.h b/Source/openal_wrapper.h index a7d6af2..e88b5f9 100644 --- a/Source/openal_wrapper.h +++ b/Source/openal_wrapper.h @@ -1,3 +1,24 @@ +/* +Copyright (C) 2003, 2010 - Wolfire Games + +This file is part of Lugaru. + +Lugaru is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + #ifndef OPENAL_WRAPPER_H #define OPENAL_WRAPPER_H -- 2.39.2