WIP: UI system, containers and widgets.

This commit is contained in:
2025-06-19 14:30:20 +02:00
parent a450ed9819
commit 806c9cc1d4
15 changed files with 341 additions and 11 deletions

View File

@@ -18,6 +18,11 @@ namespace Voile
/// </summary>
public T Value => ResourceManager.GetResource<T>(Guid);
public static ResourceRef<T> Empty()
{
return new ResourceRef<T>(Guid.Empty);
}
public ResourceRef(Guid guid)
{
Guid = guid;