Show fallback glyph if its not present in the font, add Japanese font to TestGame.

This commit is contained in:
2025-06-29 16:21:34 +02:00
parent 9bc9810c8f
commit b3c1db3145
5 changed files with 66 additions and 5 deletions

View File

@@ -69,4 +69,20 @@ namespace Voile
Path = path;
}
}
/// <summary>
/// Represents a Resource that requires systems to react to its changes.
/// </summary>
public interface IUpdatableResource
{
/// <summary>
/// Gets a value indicating whether this resource's state has changed and needs to be reloaded.
/// </summary>
bool Dirty { get; }
/// <summary>
/// Marks this resource as updated.
/// </summary>
void MarkUpdated();
}
}