Added
- Added the `tcod.ecs.IsA` sentinel value.
- Entities will automatically inherit components/tags/relations from entities they have an `IsA` relationship with. https://github.com/HexDecimal/python-tcod-ecs/pull/15
- Entities can be used as prefabs, use `Entity.instantiate()` to make a new entities inheriting the base entities components/tags/relations.
Removed
- `tcod.ecs.query.Query` removed due to a refactor.
- `abstract_component` decorator removed.
Fixed
- Fix for `x in Entity.relation_tags_many` not checking the correct values.