public static extern nk_font *nk_font_atlas_add_compressed( nk_font_atlas *atlas, IntPtr memory, IntPtr size, float height, nk_font_config *fconfig );
public static extern nk_font *nk_font_atlas_add_compressed_base85(nk_font_atlas *atlas, byte *data, float height, nk_font_config *fconfig);
public static extern nk_font *nk_font_atlas_add_default(nk_font_atlas *atlas, float height, nk_font_config *fconfig);
public static extern nk_font *nk_font_atlas_add(nk_font_atlas *atlas, nk_font_config *fconfig);
public static nk_font *nk_font_atlas_add_compressed_base85(nk_font_atlas *atlas, byte *data, float height, nk_font_config *fconfig) => _nk_font_atlas_add_compressed_base85(atlas, data, height, fconfig);
public static nk_font *nk_font_atlas_add_compressed(nk_font_atlas *atlas, IntPtr memory, IntPtr size, float height, nk_font_config *fconfig) => _nk_font_atlas_add_compressed(atlas, memory, size, height, fconfig);
public static nk_font *nk_font_atlas_add_default(nk_font_atlas *atlas, float height, nk_font_config *fconfig) => _nk_font_atlas_add_default(atlas, height, fconfig);
public static nk_font *nk_font_atlas_add(nk_font_atlas *atlas, nk_font_config *fconfig) => _nk_font_atlas_add(atlas, fconfig);