Add font tag

This commit is contained in:
Wojciech Figat
2022-08-03 14:39:00 +02:00
parent 8f895e54cd
commit 6f18a8a3ff
4 changed files with 43 additions and 0 deletions

View File

@@ -40,6 +40,17 @@ namespace FlaxEngine
_cachedFont = null;
}
/// <summary>
/// Initializes a new instance of the <see cref="FontReference"/> struct.
/// </summary>
/// <param name="other">The other font reference.</param>
public FontReference(FontReference other)
{
_font = other._font;
_size = other._size;
_cachedFont = other._cachedFont;
}
/// <summary>
/// Initializes a new instance of the <see cref="FontReference"/> struct.
/// </summary>