From f65bdd0f13155f12301a671e7535219b615a1721 Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Sun, 14 Oct 2018 22:43:45 +0200 Subject: [PATCH] Add license header to gamecontroller files --- src/gamecontroller.c | 18 ++++++++++++++++++ src/gamecontroller.h | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/src/gamecontroller.c b/src/gamecontroller.c index 32cc39b..cc41b2f 100644 --- a/src/gamecontroller.c +++ b/src/gamecontroller.c @@ -1,3 +1,21 @@ +/* + * BreakHack - A dungeone crawler RPG + * Copyright (C) 2018 Linus Probert + * + * This program 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 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include "gamecontroller.h" #include "util.h" diff --git a/src/gamecontroller.h b/src/gamecontroller.h index d846944..493b821 100644 --- a/src/gamecontroller.h +++ b/src/gamecontroller.h @@ -1,3 +1,21 @@ +/* + * BreakHack - A dungeone crawler RPG + * Copyright (C) 2018 Linus Probert + * + * This program 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 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #pragma once #include