vraylib

Raylib wrapper for vlang
git clone git://git.lair.cx/vraylib
Log | Files | Refs | README | LICENSE

README (548B)


      1 Raylib 5.0 bindings for the V programming language
      2 
      3 
      4 Note: This library is work in progress and not yet ready for use.
      5 
      6 
      7 ## Changes from original Raylib C-API
      8 
      9 - `string` instead of `char *` for all string parameters
     10 - `void TraceLog(int logLevel, const char *text, ...)` -> `fn trace_log(log_level: int, text: string)`
     11   - Use string interpolation instead of `printf`-style formatting
     12 - Some functions are removed; Use V's standard library instead
     13   - File-related functions
     14   - Compression/Encoding functions
     15 
     16 ## TODO
     17 
     18 - Memory safety for Image
     19