From a106b9968fab5eae97a8f9fc85e0379358642c8d Mon Sep 17 00:00:00 2001 From: Not-Nik Date: Fri, 18 Aug 2023 01:04:12 +0200 Subject: [PATCH] Remove the technical restrictions notice --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 2f9d063..17be352 100755 --- a/README.md +++ b/README.md @@ -8,8 +8,6 @@ Bindings tested on raylib version 4.6.0-dev and Zig 0.11.0 Thanks to all the [contributors](https://github.com/Not-Nik/raylib-zig/graphs/contributors) for their help with this binding. -The binding currently only supports a subset of raylib. For more information read [here](#technical-restrictions). - ## Example ```zig @@ -47,10 +45,6 @@ pub fn main() anyerror!void { } ``` -## Technical restrictions - -Due to zig being a relatively new language it does [not have full C ABI support](https://github.com/ziglang/zig/issues/1481) at the moment. For use that mainly means we can't use any functions that return structs that are less than 16 bytes large. - ## Building the examples To build all available examples simply `zig build examples`. To list available examples run `zig build --help`. If you want to run an example, say `basic_window` run `zig build basic_window`