49
edits
| Line 52: | Line 52: | ||
This is the file that instructs WoW in some basics about your AddOn and what other files you want loaded. Here's a short example of one. If you pasted this code into a 'MyAddOn.toc' file it would work as a beginning toc file: | This is the file that instructs WoW in some basics about your AddOn and what other files you want loaded. Here's a short example of one. If you pasted this code into a 'MyAddOn.toc' file it would work as a beginning toc file: | ||
<pre> | |||
## Interface: {{API LatestInterface}} | |||
## Title: My AddOn | |||
## Notes: This AddOn does nothing but display a frame with a button | |||
## Author: My Name | |||
MyAddOn.xml | |||
MyAddOn.lua | |||
</pre> | |||
You can read more about what you need or can put in a TOC over at [[The TOC Format]]. | You can read more about what you need or can put in a TOC over at [[The TOC Format]]. | ||