Add copyright headers

Sasky [06-25-14 - 07:28]
Add copyright headers
Filename
CyrHUD.lua
classes/Battle.lua
classes/Info.lua
diff --git a/CyrHUD.lua b/CyrHUD.lua
index e2bd308..5a4abbf 100644
--- a/CyrHUD.lua
+++ b/CyrHUD.lua
@@ -1,7 +1,19 @@
---[[
-  * CyrHUD
-  * Author: Sasky
-]]--
+-- This file is part of CyrHUD
+--
+-- (C) 2014 Scott Yeskie (Sasky)
+--
+-- 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 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, see <http://www.gnu.org/licenses/>.

 if CyrHUD == nil then
     --noinspection GlobalCreationOutsideO
diff --git a/classes/Battle.lua b/classes/Battle.lua
index 2cbe510..13e29bd 100644
--- a/classes/Battle.lua
+++ b/classes/Battle.lua
@@ -13,7 +13,23 @@ local function n0(val) if val == nil then return 0 end return val end

 -- Setup class
 CyrHUD.Battle = {}
-CyrHUD.Battle.__index = CyrHUD.Battle
+-- This file is part of CyrHUD
+--
+-- (C) 2014 Scott Yeskie (Sasky)
+--
+-- 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 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, see <http://www.gnu.org/licenses/>.
+
 setmetatable(CyrHUD.Battle, {
     __call = function (cls, ...)
         return cls.new(...)
diff --git a/classes/Info.lua b/classes/Info.lua
index b56fcde..a29b50b 100644
--- a/classes/Info.lua
+++ b/classes/Info.lua
@@ -1,8 +1,19 @@
---[[
-  * CyrHUD.info table
-  * Author: Sasky
-  * Contains texture mapping and colors
-]]--
+-- This file is part of CyrHUD
+--
+-- (C) 2014 Scott Yeskie (Sasky)
+--
+-- 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 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, see <http://www.gnu.org/licenses/>.

 if CyrHUD == nil then
     --noinspection GlobalCreationOutsideO
@@ -43,3 +54,7 @@ CyrHUD.info[EP][KEEPTYPE_OUTPOST] = "/esoui/art/mappins/ava_outpost_ebonheart.dd
 CyrHUD.info[EP][10 + RESOURCETYPE_FOOD] = "/esoui/art/mappins/ava_farm_ebonheart.dds"
 CyrHUD.info[EP][10 + RESOURCETYPE_ORE] = "/esoui/art/mappins/ava_mine_ebonheart.dds"
 CyrHUD.info[EP][10 + RESOURCETYPE_WOOD] = "/esoui/art/mappins/ava_lumbermill_ebonheart.dds"
+
+--/esoui/art/campaign/overview_scrollicon_aldmeri.dds
+--/esoui/art/campaign/overview_scrollicon_daggefall.dds
+--/esoui/art/campaign/overview_scrollicon_ebonheart.dds
\ No newline at end of file