Add some more examples to doc comments

This commit is contained in:
Soreepeong 2023-11-30 22:16:12 +09:00
parent 47902f9770
commit 7eb4bf8ab4
4 changed files with 14 additions and 10 deletions

View file

@ -360,8 +360,8 @@ internal sealed partial class FontAtlasFactory
public IFontHandle NewGameFontHandle(GameFontStyle style) => this.gameFontHandleManager.NewFontHandle(style);
/// <inheritdoc/>
public IFontHandle NewDelegateFontHandle(FontAtlasBuildStepDelegate @delegate) =>
this.delegateFontHandleManager.NewFontHandle(@delegate);
public IFontHandle NewDelegateFontHandle(FontAtlasBuildStepDelegate buildStepDelegate) =>
this.delegateFontHandleManager.NewFontHandle(buildStepDelegate);
/// <inheritdoc/>
public void FreeFontHandle(IFontHandle handle)