ACE3/documentation/development/modularity-and-pbo-structure.md
KoffeinFlummi d2fbd5c735 Fix groups
2015-04-12 14:42:49 +02:00

33 lines
760 B
Markdown

---
layout: wiki
title: Modularity And PBO Structure
group: development
parent: wiki
order: 4
---
### Modularity
Main principles:
- As much stuff as possible should be modular
- Strive to make as much stuff as possible run-time toogable. Adding/removing PBOS would still be requiring to toogle any feature relying on config changes.
### PBO Structure
Main principles:
- Try to keep single module dependencies as much as possible
- InteractionMenu would be the requirement for most modules.
- Anything that is 100% config should require common and not interaction.
```
Main -> Common -> OptionsMenu -> InteractionMenu -> Most things
Main -> Common -> Config things
Main -> Common -> 3D Models |
InteractionMenu | -> Feature
```