# Blackboard Follower

Any object which wants to subscribe to the **Blackboard**, which allows that object to receive `BlackboardEvent` and `BlackboardNote` notifications, needs to implement `IFollowBlackboard` or (perhaps more easily) inherit from `BlackboardFollower`.

### **Blackboard Follower**

Inheriting from `BlackboardFollower` will allow your object to automatically subscribe and unsubscribe from the blackboard, and provides methods you can override for handling notifications.

Check the `GameData` object in the **Party Based RPG** demo game to see how this is used.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://infinitypbr.gitbook.io/magic-pig-games/game-modules-4/module-documentation/blackboard/blackboard-follower.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
