Closed DDexxeDD closed 4 months ago
Mind adding their declarations to the top of raylib-nuklear? That should fix it up. Thanks#
Just changing their declarations to NK_API
worked for me, I dont know if thats a good fix though. Do they need to be NK_LIB
?
NK_LIB
defines as static because ofNK_SINGLE_FILE
at the start of nuklear.h. The definitions ofnk_raylib_malloc
andnk_raylib_mfree
are inside theRAYLIB_NUKLEAR_IMPLEMENTATION
define. Because of that they will not be defined in any file that includesraylib-nuklear.h
but does not implement it.