Show fallback glyph if its not present in the font, add Japanese font to TestGame.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user