
- Input state polling & consuming - is_key_down, is_key_just_pressed, is_key_just_release - consume_key_down, consume_key_just_pressed, consume_key_just_released - Input events - Key event - Scroll event - Text event - unicode.c - utf16_to_utf32
9 lines
No EOL
222 B
Batchfile
9 lines
No EOL
222 B
Batchfile
@echo off
|
|
rmdir /S /Q build
|
|
mkdir build
|
|
|
|
pushd build
|
|
|
|
clang -g -o cgame.exe ../build.c -O0 -std=c11 -Wextra -Wno-incompatible-library-redeclaration -Wno-sign-compare -Wno-unused-parameter -lgdi32 -luser32 -lopengl32
|
|
|
|
popd |