diff options
author | jonas <himself@jonasgunz.de> | 2018-12-26 21:18:09 +0100 |
---|---|---|
committer | jonas <himself@jonasgunz.de> | 2018-12-26 21:18:09 +0100 |
commit | 616951a353caf398908e6e6ce7dddf34a65513e5 (patch) | |
tree | 36a5ac46861b3f2c21777d383359f8463676e404 /AmpelJonas/Makefile | |
parent | 905f5ad1f16d2ea719eb40c311609f8fad46fd95 (diff) | |
download | termgl-616951a353caf398908e6e6ce7dddf34a65513e5.tar.gz |
Added cInput input handler class
cRender: +setConsoleCursor(bool) to disable console cursor
main: Example workign with cInput
cInput: Input handler class
Diffstat (limited to 'AmpelJonas/Makefile')
-rw-r--r-- | AmpelJonas/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AmpelJonas/Makefile b/AmpelJonas/Makefile index c529a34..ab2707a 100644 --- a/AmpelJonas/Makefile +++ b/AmpelJonas/Makefile @@ -3,7 +3,7 @@ CFLAGS = -Wall -g LDFLAGS = -lm -lcurses OUTPUT = Engine -OBJ = main.o cObject.o cObjectHandler.o cRender.o +OBJ = main.o cObject.o cObjectHandler.o cRender.o cInput.o prog: $(OBJ) $(CC) $(CFLAGS) -o $(OUTPUT) $(OBJ) $(LDFLAGS) |