ashish2199 / Aidos

A beginner friendly project with aim of creating our own version of Bomberman.
GNU General Public License v3.0
41 stars 27 forks source link

Drop bombs #49

Closed ashish2199 closed 6 years ago

ashish2199 commented 6 years ago

Implemented a dropping of bombs using space bar but at present bombs don't explode. Also added a method to entities interface to prevent collision occurring from certain entities like bombs or other players. Also added a new sprite sheet with yellow border removed since it was creating problem while drawing them.

ashish2199 commented 6 years ago

@CoreyHendrey and @StewartWallace1115 Please take a look.

ItsStolas commented 6 years ago

Looks good to me, I wonder if we should have another list for entities owned by the player. Or a list for each AI/Player, to make it quicker to remove bombs etc. We could just search through those lists instead of every entity in the game.

That could be added later, however. :)

StewartWallace1115 commented 6 years ago

Looks good and I agree with @CoreyHendre about having another list of entities.