https://github.com/meysam81/space-invaders
an edition to the job that Chaser324 has done with the curses library in C program, implementing the old nostalgic game of the 20 century
https://github.com/meysam81/space-invaders
c c-lang c-language c-languages c-library c-programming ncurses ncurses-library space-game space-invaders space-shooter space-shooter-game spaceship
Last synced: 7 months ago
JSON representation
an edition to the job that Chaser324 has done with the curses library in C program, implementing the old nostalgic game of the 20 century
- Host: GitHub
- URL: https://github.com/meysam81/space-invaders
- Owner: meysam81
- Created: 2018-01-13T07:58:00.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-13T08:15:12.000Z (over 8 years ago)
- Last Synced: 2025-01-23T03:16:48.254Z (over 1 year ago)
- Topics: c, c-lang, c-language, c-languages, c-library, c-programming, ncurses, ncurses-library, space-game, space-invaders, space-shooter, space-shooter-game, spaceship
- Language: C
- Size: 8.79 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# space-invaders
an edition to the job that Chaser324 has done with the curses library in C program, implementing the old nostalgic game of the 20 century
## Prerequisite
You need to install the curses library as follows:
## Linux
`sudo apt install ncurses-*`
## Compiling
To compile the program, you're gonna follow the pattern below:
`gcc space-invaders.c -o space-invaders -lncurses`
## Run
To run, you just have to execute the binary file as follow (if you properly followed the last step):
`./space-invaders`
## Game
Enjoy!
### Here's my reference
https://github.com/Chaser324/invaders