Sokol bindings for the Jai language.
git clone --recursive https://github.com/judah-caruso/jai-sokol Sokol
cd Sokol/your_platform && build.bat
Sokol can be configured by modifying the Sokol/c/config.inc
file.
See: examples/
// Import everything
#import "Sokol";
// Import specific "submodules" of Sokol
#import "Sokol"(.App | .Time); // Would only import sokol_app and sokol_time
// See notes below.