randomPoison / cs-bindgen

Experiment in using Rust to build a library that can be loaded by Unity across multiple platforms
4 stars 0 forks source link

Fix code generation for functions returning bool #25

Closed randomPoison closed 4 years ago

randomPoison commented 4 years ago

The generated C# binding for functions returning bool were set to return byte instead of bool. This PR fixes the generated bindings, and adds regression tests for functions returning bool.