Allegro Folder Renamed
This commit is contained in:
parent
881a08e94b
commit
cea9e179ef
README.mdSynGame.c
allegro
bin
allegro-5.0.10-md.dllallegro_acodec-5.0.10-md.dllallegro_audio-5.0.10-md.dllallegro_image-5.0.10-md.dllallegro_primitives-5.0.10-md.dll
include
AL
FLAC
allegro5
alcompat.halinline.hallegro.hallegro5.hallegro_acodec.hallegro_audio.hallegro_color.hallegro_direct3d.hallegro_font.hallegro_image.hallegro_iphone.hallegro_memfile.hallegro_native_dialog.hallegro_opengl.hallegro_osx.hallegro_physfs.hallegro_primitives.hallegro_ttf.hallegro_windows.haltime.hbase.hbitmap.hbitmap_draw.hbitmap_io.hbitmap_lock.hblender.hcolor.hconfig.hdebug.hdisplay.hdrawing.herror.hevents.hfile.hfixed.hfmaths.hfshook.hfullscreen_mode.h
inline
internal
aintern.haintern_aatree.haintern_acodec_cfg.haintern_atomicops.haintern_audio.haintern_audio_cfg.haintern_bitmap.haintern_blend.haintern_config.haintern_convert.haintern_debug.haintern_direct3d.haintern_display.haintern_driver.haintern_dtor.haintern_events.haintern_exitfunc.haintern_file.haintern_float.haintern_fshook.haintern_gp2xwiz.haintern_image.haintern_image_cfg.haintern_iphone.haintern_joystick.haintern_keyboard.haintern_list.haintern_memblit.haintern_memdraw.haintern_mouse.haintern_native_dialog.haintern_native_dialog_cfg.haintern_opengl.haintern_path.haintern_pixels.haintern_prim.haintern_prim_directx.haintern_prim_opengl.haintern_prim_soft.haintern_system.h
@ -3,8 +3,8 @@ Simple Shoot 'Em Up game.
|
|||||||
|
|
||||||
Exe without console window
|
Exe without console window
|
||||||
|
|
||||||
gcc SynGame.c -o SynGame.exe "allegro-5.0.10-mingw-4.7.0\lib\liballegro-5.0.10-md.a" "allegro-5.0.10-mingw-4.7.0\lib\liballegro_audio-5.0.10-md.a" "allegro-5.0.10-mingw-4.7.0\lib\liballegro_acodec-5.0.10-md.a" "allegro-5.0.10-mingw-4.7.0\lib\liballegro_image-5.0.10-md.a" "allegro-5.0.10-mingw-4.7.0\lib\liballegro_dialog-5.0.10-md.a" "allegro-5.0.10-mingw-4.7.0\lib\liballegro_primitives-5.0.10-md.a" --machine-windows
|
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
|
||||||
|
|
||||||
Exe with console window
|
Exe with console window
|
||||||
|
|
||||||
gcc SynGame.c -o SynGame.exe "allegro-5.0.10-mingw-4.7.0\lib\liballegro-5.0.10-md.a" "allegro-5.0.10-mingw-4.7.0\lib\liballegro_audio-5.0.10-md.a" "allegro-5.0.10-mingw-4.7.0\lib\liballegro_acodec-5.0.10-md.a" "allegro-5.0.10-mingw-4.7.0\lib\liballegro_image-5.0.10-md.a" "allegro-5.0.10-mingw-4.7.0\lib\liballegro_primitives-5.0.10-md.a"
|
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"
|
10
SynGame.c
10
SynGame.c
@ -6,11 +6,11 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include "allegro-5.0.10-mingw-4.7.0\include\allegro5\allegro.h"
|
#include "allegro\include\allegro5\allegro.h"
|
||||||
#include "allegro-5.0.10-mingw-4.7.0\include\allegro5\allegro_audio.h"
|
#include "allegro\include\allegro5\allegro_audio.h"
|
||||||
#include "allegro-5.0.10-mingw-4.7.0\include\allegro5\allegro_acodec.h"
|
#include "allegro\include\allegro5\allegro_acodec.h"
|
||||||
#include "allegro-5.0.10-mingw-4.7.0\include\allegro5\allegro_image.h"
|
#include "allegro\include\allegro5\allegro_image.h"
|
||||||
#include "allegro-5.0.10-mingw-4.7.0\include\allegro5\allegro_primitives.h"
|
#include "allegro\include\allegro5\allegro_primitives.h"
|
||||||
#define playerSpeed 7.5
|
#define playerSpeed 7.5
|
||||||
#define initialPlayerHealth 4
|
#define initialPlayerHealth 4
|
||||||
#define bulletSpeed 25
|
#define bulletSpeed 25
|
||||||
|
0
allegro-5.0.10-mingw-4.7.0/bin/allegro_audio-5.0.10-md.dll → allegro/bin/allegro_audio-5.0.10-md.dll
0
allegro-5.0.10-mingw-4.7.0/bin/allegro_audio-5.0.10-md.dll → allegro/bin/allegro_audio-5.0.10-md.dll
0
allegro-5.0.10-mingw-4.7.0/bin/allegro_image-5.0.10-md.dll → allegro/bin/allegro_image-5.0.10-md.dll
0
allegro-5.0.10-mingw-4.7.0/bin/allegro_image-5.0.10-md.dll → allegro/bin/allegro_image-5.0.10-md.dll
0
allegro-5.0.10-mingw-4.7.0/include/allegro5/allegro_font.h → allegro/include/allegro5/allegro_font.h
0
allegro-5.0.10-mingw-4.7.0/include/allegro5/allegro_font.h → allegro/include/allegro5/allegro_font.h
0
allegro-5.0.10-mingw-4.7.0/include/allegro5/allegro_osx.h → allegro/include/allegro5/allegro_osx.h
0
allegro-5.0.10-mingw-4.7.0/include/allegro5/allegro_osx.h → allegro/include/allegro5/allegro_osx.h
0
allegro-5.0.10-mingw-4.7.0/include/allegro5/allegro_ttf.h → allegro/include/allegro5/allegro_ttf.h
0
allegro-5.0.10-mingw-4.7.0/include/allegro5/allegro_ttf.h → allegro/include/allegro5/allegro_ttf.h
0
allegro-5.0.10-mingw-4.7.0/include/allegro5/bitmap_draw.h → allegro/include/allegro5/bitmap_draw.h
0
allegro-5.0.10-mingw-4.7.0/include/allegro5/bitmap_draw.h → allegro/include/allegro5/bitmap_draw.h
0
allegro-5.0.10-mingw-4.7.0/include/allegro5/bitmap_lock.h → allegro/include/allegro5/bitmap_lock.h
0
allegro-5.0.10-mingw-4.7.0/include/allegro5/bitmap_lock.h → allegro/include/allegro5/bitmap_lock.h
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user