ok i'll wait the official

This commit is contained in:
4sval
2022-09-03 14:30:01 +02:00
parent eabf6d9bcf
commit 97b03ed0c7
4 changed files with 8 additions and 519 deletions

View File

@@ -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; }
}