mirror of
https://github.com/4sval/FModel.git
synced 2026-09-26 19:17:46 -05:00
ok i'll wait the official
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
using System;
|
||||
|
||||
namespace FModel.Framework;
|
||||
|
||||
public readonly struct ImGuiFontConfig
|
||||
{
|
||||
public ImGuiFontConfig(string fontPath, int fontSize)
|
||||
{
|
||||
if (fontSize <= 0) throw new ArgumentOutOfRangeException(nameof(fontSize));
|
||||
FontPath = fontPath ?? throw new ArgumentNullException(nameof(fontPath));
|
||||
FontSize = fontSize;
|
||||
}
|
||||
|
||||
public string FontPath { get; }
|
||||
public int FontSize { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user