diff options
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/image.c | 18 | ||||
-rw-r--r-- | src/resources/image.h | 18 | ||||
-rw-r--r-- | src/resources/map.c | 18 | ||||
-rw-r--r-- | src/resources/map.h | 18 | ||||
-rw-r--r-- | src/resources/palette.c | 18 | ||||
-rw-r--r-- | src/resources/palette.h | 18 | ||||
-rw-r--r-- | src/resources/resource.c | 18 | ||||
-rw-r--r-- | src/resources/resource.h | 18 |
8 files changed, 144 insertions, 0 deletions
diff --git a/src/resources/image.c b/src/resources/image.c index 073d39e..820d9aa 100644 --- a/src/resources/image.c +++ b/src/resources/image.c @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2013 Patrick "P. J." McDermott + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/>. + */ + #include <SDL.h> #include <SDL_image.h> #include <config.h> diff --git a/src/resources/image.h b/src/resources/image.h index b79f0ce..435be4c 100644 --- a/src/resources/image.h +++ b/src/resources/image.h @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2013 Patrick "P. J." McDermott + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/>. + */ + #ifndef IMAGE_H #define IMAGE_H diff --git a/src/resources/map.c b/src/resources/map.c index 0d65d57..a4a07f7 100644 --- a/src/resources/map.c +++ b/src/resources/map.c @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2013 Patrick "P. J." McDermott + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/>. + */ + #include <stdio.h> #include <string.h> #include <libgen.h> diff --git a/src/resources/map.h b/src/resources/map.h index bac0cd5..3341aaf 100644 --- a/src/resources/map.h +++ b/src/resources/map.h @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2013 Patrick "P. J." McDermott + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/>. + */ + #ifndef RESOURCE_MAP_H #define RESOURCE_MAP_H diff --git a/src/resources/palette.c b/src/resources/palette.c index 2470f70..b20b6d0 100644 --- a/src/resources/palette.c +++ b/src/resources/palette.c @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2013 Patrick "P. J." McDermott + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/>. + */ + #include <stdio.h> #include <SDL.h> #include <config.h> diff --git a/src/resources/palette.h b/src/resources/palette.h index f11a70b..470327e 100644 --- a/src/resources/palette.h +++ b/src/resources/palette.h @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2013 Patrick "P. J." McDermott + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/>. + */ + #ifndef RESOURCES_PALETTE_H #define RESOURCES_PALETTE_H diff --git a/src/resources/resource.c b/src/resources/resource.c index 90df5c2..8b1cca3 100644 --- a/src/resources/resource.c +++ b/src/resources/resource.c @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2013 Patrick "P. J." McDermott + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/>. + */ + #include <stdlib.h> #include <string.h> #include "resource.h" diff --git a/src/resources/resource.h b/src/resources/resource.h index 5bec5e8..5d30a74 100644 --- a/src/resources/resource.h +++ b/src/resources/resource.h @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2013 Patrick "P. J." McDermott + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/>. + */ + #ifndef RESOURCE_H #define RESOURCE_H |