vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[
2 --
3 -- Sea
4 --
5 -- A WoW function library.
6 --
7 -- To use a Sea function, just include a Sea dependency,
8 -- Then use Sea.Library.Function(args);
9 --
10 -- This uses a very Java-like organizational system.
11 --
12 -- Thanks to:
13 -- The Cosmos Team (esp. Thott and AlexanderYoshi)
14 -- CT Mod (Cide)
15 -- GypsyMod (Mondinga)
16 --
17 -- For all of your creativity and input.
18 --
19 -- $Author: Miravlix $
20 -- $Date: 2006-06-16 23:19:27 -0500 (Fri, 16 Jun 2006) $
21 -- $Rev: 3674 $
22 --
23 --]]
24  
25 --
26 -- Sea, mother of all.
27 --
28 Sea = {
29 -- Version number
30 -- This should be incremented for any changes at all, except for TOC changes
31 -- Only increment once per release, and only by 0.01
32 version = 1.18;
33  
34 -- Input/Output Libraries
35 IO = {};
36  
37 -- Data Lists (Herbs, Ore, Food, Zones, etc)
38 data = {};
39  
40 -- Mathematical Things
41 math = {};
42  
43 -- String Modifying Functions
44 string = {};
45  
46 -- Custom Table Functions
47 table = {};
48  
49 -- Utility Functions
50 util = {};
51  
52 -- WoW UI Modifying Functions
53 wow = {};
54  
55 -- Versioning for comparison with external embedable Mini-Libs
56 versions = {};
57 };