From d0654049aeea675c4f43bc383d2a5935448a2d6e Mon Sep 17 00:00:00 2001 From: Yehonal Date: Wed, 28 Apr 2021 16:29:37 +0200 Subject: Update hooks-script.md --- docs/hooks-script.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/hooks-script.md') diff --git a/docs/hooks-script.md b/docs/hooks-script.md index 9bb6ca1..927a225 100644 --- a/docs/hooks-script.md +++ b/docs/hooks-script.md @@ -8,13 +8,13 @@ The ScriptAI system implemented by AC uses a special [Observer pattern](https:// This guide, together with our [module system](Create-a-Module.md) lets you extend the AzerothCore without patching it directly. This allows you to update your repository by keeping your additions and customizations conflict-free! -# Resources +## Resources -## Hook List +### Hook List The list of the hooks can be found inside the [ScriptMgr.h file](https://github.com/azerothcore/azerothcore-wotlk/blob/master/src/server/game/Scripting/ScriptMgr.h) -## Glossary +### Glossary * **Hook**: A function that is declared inside a **_ScriptObject_** and that is defined by the **_Listeners_** * **ScriptObject**: Abstract class that should be extended to create the **_Observer_**. -- cgit