资 源 简 介
Quidditas
Helps to manage entities and game objects in a component-processor relationship instead of creating big inheritance trees for all entities.
Keeps the creation of new entities simple, modular and the processing fast.
Inspired by the Artemis framework.
Current release
The current version is 0.9.1 and can be installed via PyPi or directly downloaded from this site.
Installing with pip
pip install quidditas
Usage
For detailed instructions see the Usage wiki page.
Getting started
Write some components for an entity
Components are simple data stores which don"t have to extend a specific class. Their attributes and functions depend on what you intend to do with their data.
```python
class PositionComponent(object):
def init(self, x=0, y=0):
self.x = x
se