| 90 | class SpawnSystem : public ex::System<SpawnSystem> { |
| 91 | public: |
| 92 | explicit SpawnSystem(sf::RenderTarget &target, int count) : size(target.getSize()), count(count) {} |
| 93 | |
| 94 | void update(ex::EntityManager &es, ex::EventManager &events, ex::TimeDelta dt) override { |
| 95 | int c = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected