Merge branch 'develop' of github.com:AnonymusRaccoon/Bomberman into background_parallax

This commit is contained in:
Askou
2021-06-18 11:57:35 +02:00
59 changed files with 272 additions and 453 deletions
+2 -2
View File
@@ -85,8 +85,8 @@ namespace BBM
entity.removeComponent<ControllableComponent>();
if (entity.hasComponent<TimerComponent>())
return;
entity.addComponent<TimerComponent>(1s, [](WAL::Entity &entity, WAL::Wal &wal) {
entity.scheduleDeletion();
entity.addComponent<TimerComponent>(1s, [](WAL::Entity &ent, WAL::Wal &wal) {
ent.scheduleDeletion();
});
});
}