UUID: Removed empty constructor, added static Create-Function

This commit is contained in:
Simon Lübeß
2023-09-13 13:14:54 +02:00
parent 370eaf9bc7
commit ff54eb738e
3 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ struct AssetHandle : IHashable
/// Create a new random AssetHandle
public this()
{
_uuid = UUID();
_uuid = UUID.Create();
}
private this(UUID uuid)