Watch
2
0
Fork
You've already forked raylib-cs
0

LoadFontEx XML comment updated

This commit is contained in:
JupiterRider 2024-12-06 20:33:42 +01:00
commit 8719c30d1e
2 changed files with 6 additions and 3 deletions

View file

@ -1966,8 +1966,8 @@ public static unsafe partial class Raylib
public static extern Font LoadFont(sbyte* fileName);
/// <summary>
/// Load font from file with extended parameters, use NULL for fontChars and 0 for glyphCount to load
/// the default character set
/// Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load
/// the default character set, font size is provided in pixels height
/// </summary>
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Font LoadFontEx(sbyte* fileName, int fontSize, int* codepoints, int codepointCount);