Logic in Entity Components Sytems
- by aaron
I'm making a game that uses an Entity/Component architecture basically a port of Artemis's framework to c++,the problem arises when I try to make a PlayerControllerComponent, my original idea was this.
class PlayerControllerComponent: Component {
public:
virtual void update() = 0;
};
class FpsPlayerControllerComponent:…