WoW:Sea (AddOn): Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(ChangeLog link and info update) |
||
| Line 1: | Line 1: | ||
Sea is a set of function libraries designed to make the process of writing new [[World of Warcraft]] UI mods faster and simpler. It is designed to reflect a [[Java]] like library style. | Sea is a set of function libraries designed to make the process of writing new [[World of Warcraft]] UI mods faster and simpler. It is designed to reflect a [[Java]] like object oriented library style. | ||
For example: | For example: | ||
Sea.IO.print("Hello World!"); | Sea.IO.print("Hello World!"); | ||
You can download the | The most current version will always be availible in the DevTools and Alpha distrobutions of Cosmos. | ||
You can download the release version from [http://www.curse-gaming.com/mod.php?addid=122 here]. | |||
[[Sea ChangeLog]] | |||
== Sea Documentation == | == Sea Documentation == | ||
Revision as of 22:32, 5 January 2006
Sea is a set of function libraries designed to make the process of writing new World of Warcraft UI mods faster and simpler. It is designed to reflect a Java like object oriented library style.
For example:
Sea.IO.print("Hello World!");
The most current version will always be availible in the DevTools and Alpha distrobutions of Cosmos. You can download the release version from here.
Sea Documentation
Sea Libraries
- data - information tables useful to the game
- IO - input/output functions (mostly output)
- lang - localization and language formatting functions
- math - mathematical functions and constants not in lua's Math
- string - string manipulation and formatting functions
- table - table manipulation functions
- util - common utilities, such as hooking functions
- wow - World of Warcraft game object functions (like tooltip.scan)
Template:Suggest in Discussion
Sea Examples
- Your example here