SynGame/README.md

26 lines
1.1 KiB
Markdown
Raw Normal View History

2019-09-10 10:49:27 +03:00
# SynGame
2019-09-10 11:14:36 +03:00
Simple Shoot 'Em Up game.
Keys:
Move Up - Up Arrow
Move Right - Right Arrow
Move Down - Down Arrow
Move Left - Left Arrow
Shoot - Space
Restart - R
Exit - Escape(ESC)
Settings.syn can be opened with a text editor.
Format:
First line: Screen Mode, 1 is Fullscreen, 0 is Windowed
Second line: Screen Width, Windowed Mode Only
Third line: Screen Height, Windowed Mode Only
Fourth line: Enemy Count Limiter, there will be no more enemies than this number on the screen
2019-09-10 11:14:36 +03:00
Exe without console window
2019-09-10 11:15:30 +03:00
2019-09-10 12:50:01 +03:00
gcc SynGame.c -o SynGame.exe "allegro\lib\liballegro-5.0.10-md.a" "allegro\lib\liballegro_audio-5.0.10-md.a" "allegro\lib\liballegro_acodec-5.0.10-md.a" "allegro\lib\liballegro_image-5.0.10-md.a" "allegro\lib\liballegro_dialog-5.0.10-md.a" "allegro\lib\liballegro_primitives-5.0.10-md.a" --machine-windows
2019-09-10 11:14:36 +03:00
Exe with console window
2019-09-10 11:15:30 +03:00
2019-09-10 12:50:01 +03:00
gcc SynGame.c -o SynGame.exe "allegro\lib\liballegro-5.0.10-md.a" "allegro\lib\liballegro_audio-5.0.10-md.a" "allegro\lib\liballegro_acodec-5.0.10-md.a" "allegro\lib\liballegro_image-5.0.10-md.a" "allegro\lib\liballegro_primitives-5.0.10-md.a"