vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[
2 Auctioneer Addon for World of Warcraft(tm).
3 Version: 3.9.0.1000 (Kangaroo)
4 Revision: $Id: AucObjects.lua 766 2006-03-22 22:35:05Z mentalpower $
5  
6 Auctioneer Objects
7 Initialization of Auctioneer method tables.
8 Thanks to the Sea coders for their invaluable input
9  
10 License:
11 This program is free software; you can redistribute it and/or
12 modify it under the terms of the GNU General Public License
13 as published by the Free Software Foundation; either version 2
14 of the License, or (at your option) any later version.
15  
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20  
21 You should have received a copy of the GNU General Public License
22 along with this program(see GPL.txt); if not, write to the Free Software
23 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 ]]
25  
26 Auctioneer = {
27 API = {};
28  
29 AskPrice = {};
30  
31 Command = {};
32  
33 Convert = {};
34  
35 Core = {};
36  
37 Filter = {};
38  
39 Scanner = {};
40  
41 Scanning = {};
42  
43 Statistic = {};
44  
45 Storage = {};
46  
47 Tooltip = {};
48  
49 Util = {};
50  
51 BalancedList = {};
52  
53 Event = {};
54 };