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

Update docs of some FromMemory-functions #305 (#306)

This commit is contained in:
JupiterRider 2025-07-28 13:27:06 +02:00 committed by GitHub
commit 8384e36054
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View file

@ -130,7 +130,7 @@ public static unsafe partial class Raylib
}
/// <summary>
/// Load image from managed memory, fileType refers to extension: i.e. "png"
/// Load image from managed memory, fileType refers to extension: i.e. ".png"
/// </summary>
public static Image LoadImageFromMemory(string fileType, byte[] fileData)
{
@ -949,7 +949,7 @@ public static unsafe partial class Raylib
}
/// <summary>
/// Load font from managed memory, fileType refers to extension: i.e. "ttf"
/// Load font from managed memory, fileType refers to extension: i.e. ".ttf"
/// </summary>
public static Font LoadFontFromMemory(
string fileType,
@ -1273,7 +1273,7 @@ public static unsafe partial class Raylib
}
/// <summary>
/// Load wave from managed memory, fileType refers to extension: i.e. "wav"
/// Load wave from managed memory, fileType refers to extension: i.e. ".wav"
/// </summary>
public static Wave LoadWaveFromMemory(
string fileType,