Mercurial > wow > cyborg-mmo7
annotate OptionView.lua @ 0:bf9220814fb5
The first version of the Cyborg MMO7 addon for warcraft
author | madcatzinc@35b17cf1-18cd-47ff-9ca3-31d6b526ef09 |
---|---|
date | Tue, 24 Jan 2012 17:14:21 +0000 |
parents | |
children | a4e2eaf9cad9 |
rev | line source |
---|---|
madcatzinc@0 | 1 --~ Warcraft Plugin for Cyborg MMO7 |
madcatzinc@0 | 2 --~ Filename: OptionView.lua |
madcatzinc@0 | 3 --~ Description: The code for the Option page in the UI, not much here because we dont have many options. Probably could refactor. |
madcatzinc@0 | 4 --~ Copyright (C) 2012 Mad Catz Inc. |
madcatzinc@0 | 5 --~ Author: Christopher Hooks |
madcatzinc@0 | 6 |
madcatzinc@0 | 7 --~ This program is free software; you can redistribute it and/or |
madcatzinc@0 | 8 --~ modify it under the terms of the GNU General Public License |
madcatzinc@0 | 9 --~ as published by the Free Software Foundation; either version 2 |
madcatzinc@0 | 10 --~ of the License, or (at your option) any later version. |
madcatzinc@0 | 11 |
madcatzinc@0 | 12 --~ This program is distributed in the hope that it will be useful, |
madcatzinc@0 | 13 --~ but WITHOUT ANY WARRANTY; without even the implied warranty of |
madcatzinc@0 | 14 --~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
madcatzinc@0 | 15 --~ GNU General Public License for more details. |
madcatzinc@0 | 16 |
madcatzinc@0 | 17 --~ You should have received a copy of the GNU General Public License |
madcatzinc@0 | 18 --~ along with this program; if not, write to the Free Software |
madcatzinc@0 | 19 --~ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
madcatzinc@0 | 20 |
madcatzinc@0 | 21 OptionView = { |
madcatzinc@0 | 22 new = function(self) |
madcatzinc@0 | 23 self.name = "Cyborg MMO7 Plugin" |
madcatzinc@0 | 24 InterfaceOptions_AddCategory(self); |
madcatzinc@0 | 25 return self |
madcatzinc@0 | 26 |
madcatzinc@0 | 27 end |
madcatzinc@0 | 28 } |