FosterFramework / Foster

A small C# game framework
MIT License
422 stars 37 forks source link

Avoid usage of bool in foster_platform.h #47

Closed amerkoleci closed 9 months ago

amerkoleci commented 9 months ago

Avoid usage of bool (as it has C# issues) and add FosterBool (which is typedef to uint8_t/byte C#), as per https://github.com/NoelFB/Foster/commit/9852f3e3b75fbfe119ddf3063b4fd398b8caf5a2

NoelFB commented 9 months ago

Good call! Thanks for this!