A unit or group of units performs an action while everything else is only capable of reacting to that performed action(s). Then the next unit or group of units can act.
3
votes
1answer
113 views
How to progress an entity-component gamestate in a turn-based game?
So far the entity component systems I've used have worked mostly like Java's artemis:
All data in components
Stateless independent systems (at least to the degree that they don't require input on ...