Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ For details, please refer [the Contributing page](https://github.com/tasdikrahma
- [x] Fix [bug](https://github.com/tasdikrahman/spaceShooter/blob/master/spaceShooter.py#L372) which stops the background music from looping
- [x] Add support for `WAV` game music file as `ogg` format is not playable as described in [#1](https://github.com/tasdikrahman/spaceShooter/issues/1)
- [ ] Add feature to pause to the game.
- [ ] add feature to replay the game after all players die
- [ ] Add `OS X` executable file as the `Debian` based one fails to execute on it
- [ ] Add feature to replay the game after all players die.
- [ ] Add `OS X` executable file as the `Debian` based one fails to execute on it.


## Issues
Expand Down
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ using namespace std;
int main()
{
for(int i=1;i<=25;i++)
cout<<1+rand()%6<<endl;
cout<<1+rand()%6<<endl; // generates a random integer between 1 and 6.
}
2 changes: 1 addition & 1 deletion nada.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
using namespace std;
boocrap::boocrap()
{
cout<<"I am a Banana"<<endl;
cout<<"I am a Banana"<<endl; // function generates I am a Banana
}